5 internal class Button
: ContextBoundObject
7 public int Counter (int? x
)
14 public static Button TheButton
= new Button ();
17 public static int Main ()
19 // Test remoting and nullables
20 if (Button
.TheButton
.Counter (1) != 2)
23 int?[] x
= new int?[] { null }
;
24 return x
.GetValue (0) == null ? 0 : 2;