示例#1
0
 public static void Main(string[] args)
 {
     Console.WriteLine("Hello from .NET!");
     //
     // create the proxy class
     Demo demo = new Demo();
     demo.do_stuff();
 }
示例#2
0
 void method()
 {
     Demo d = new Demo();
     d.do_stuff();
 }