Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- [HostProtection(SecurityAction.LinkDemand, UI=true)]
- public static void WriteLine()
- {
- Out.WriteLine();
- }
- [HostProtection(SecurityAction.LinkDemand, UI=true)]
- public static void WriteLine(bool value)
- {
- Out.WriteLine(value);
- }
- [HostProtection(SecurityAction.LinkDemand, UI=true)]
- public static void WriteLine(char value)
- {
- Out.WriteLine(value);
- }
- [HostProtection(SecurityAction.LinkDemand, UI=true)]
- public static void WriteLine(decimal value)
- {
- Out.WriteLine(value);
- }
- [HostProtection(SecurityAction.LinkDemand, UI=true)]
- public static void WriteLine(double value)
- {
- Out.WriteLine(value);
- }
- [HostProtection(SecurityAction.LinkDemand, UI=true)]
- public static void WriteLine(int value)
- {
- Out.WriteLine(value);
- }
- [HostProtection(SecurityAction.LinkDemand, UI=true)]
- public static void WriteLine(long value)
- {
- Out.WriteLine(value);
- }
- [HostProtection(SecurityAction.LinkDemand, UI=true)]
- public static void WriteLine(object value)
- {
- Out.WriteLine(value);
- }
- [HostProtection(SecurityAction.LinkDemand, UI=true)]
- public static void WriteLine(char[] buffer)
- {
- Out.WriteLine(buffer);
- }
- [HostProtection(SecurityAction.LinkDemand, UI=true)]
- public static void WriteLine(float value)
- {
- Out.WriteLine(value);
- }
- [HostProtection(SecurityAction.LinkDemand, UI=true)]
- public static void WriteLine(string value)
- {
- Out.WriteLine(value);
- }
- [CLSCompliant(false), HostProtection(SecurityAction.LinkDemand, UI=true)]
- public static void WriteLine(uint value)
- {
- Out.WriteLine(value);
- }
- [CLSCompliant(false), HostProtection(SecurityAction.LinkDemand, UI=true)]
- public static void WriteLine(ulong value)
- {
- Out.WriteLine(value);
- }
- [HostProtection(SecurityAction.LinkDemand, UI=true)]
- public static void WriteLine(string format, params object[] arg)
- {
- if (arg == null)
- {
- Out.WriteLine(format, null, null);
- }
- else
- {
- Out.WriteLine(format, arg);
- }
- }
- [HostProtection(SecurityAction.LinkDemand, UI=true)]
- public static void WriteLine(string format, object arg0)
- {
- Out.WriteLine(format, arg0);
- }
- [HostProtection(SecurityAction.LinkDemand, UI=true)]
- public static void WriteLine(string format, object arg0, object arg1)
- {
- Out.WriteLine(format, arg0, arg1);
- }
- [HostProtection(SecurityAction.LinkDemand, UI=true)]
- public static void WriteLine(char[] buffer, int index, int count)
- {
- Out.WriteLine(buffer, index, count);
- }
- [HostProtection(SecurityAction.LinkDemand, UI=true)]
- public static void WriteLine(string format, object arg0, object arg1, object arg2)
- {
- Out.WriteLine(format, arg0, arg1, arg2);
- }
- [CLSCompliant(false), HostProtection(SecurityAction.LinkDemand, UI=true)]
- public static void WriteLine(string format, object arg0, object arg1, object arg2, object arg3, __arglist)
- {
- ArgIterator iterator = new ArgIterator(__arglist);
- int num = iterator.GetRemainingCount() + 4;
- object[] arg = new object[num];
- arg[0] = arg0;
- arg[1] = arg1;
- arg[2] = arg2;
- arg[3] = arg3;
- for (int i = 4; i < num; i++)
- {
- arg[i] = TypedReference.ToObject(iterator.GetNextArg());
- }
- Out.WriteLine(format, arg);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement