摘要: struct class Program { static void Main(string[] args) { Point p = new Point(1, 1); Console.WriteLine(p); p.Change(2, 2); Console.WriteLine(p); object o = p; Console.WriteLine(o); ((Point)o)... 阅读全文
posted @ 2010-01-04 17:37 LeimOO 阅读(241) 评论(0) 推荐(0) 编辑