摘要: 1: using System; 2: class A 3: { 4: public virtual void Method() 5: { 6: Console.WriteLine("A.method"); 7: } 8: } 9: 10: class B:A 11: { 12: ... 阅读全文
posted @ 2011-09-15 12:53 justinzhang 阅读(469) 评论(0) 推荐(0) 编辑