示例#1
0
文件: test.cs 项目: GitNothing/.NET
        public a()
        {
            var x = new test(123);
            var o = new obj();
            var s = "original";

            x.methx(o);
            x.meths(s);
            Console.ReadKey();
        }
示例#2
0
文件: test.cs 项目: GitNothing/.NET
 public void methx(obj abc)
 {
     abc.objs = "methx";
 }