2013年7月10日
摘要: 请看下面代码:using System;public class A{ public A(){ M1(); } public virtual void M1(){}}public class B : A{ private string _method; public B(){ _method = "B_C"; } public override void M1(){ Console.WriteLine("Type:{0}, in B, {1}",GetType(), _method.ToUppe... 阅读全文
posted @ 2013-07-10 09:32 Maxwell Hu 阅读(709) 评论(0) 推荐(0) 编辑