Example #1
0
        private static void Main()
        {
            @bool          b  = false;
            @string        s  = "hello";
            @int           i  = 12;
            EmptyInterface eb = b;
            EmptyInterface ai = (@int)12;

            //@string y1 = 0x266c;

            //char x = '\x266c';

            //Console.WriteLine(x);

            Main1();
            Main2();
            Main3();
            Main4();
            Main5();
            Main6();
            Main7();
            ref int value = ref Main8();
Example #2
0
 public _Main_s_type(@int i = default, @bool b = default)
 {
     this.i = i;
     this.b = b;
 }