Advertisement
Guest User

Untitled

a guest
Apr 15th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. public class Remotable : MarshalByRefObject {
  2.     public int field;
  3. }
  4. public class Test {
  5.     public static void Run() {
  6.         var obj = new Remotable();
  7.         // Warning CS1690:
  8.         Console.WriteLine(obj.field.ToString());
  9.     }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement