标签:write ons lin his 继承 静态 扩展 print 没有
有许多扩展类的方法:
1.如果有类的源代码,继承就是给对象添加新功能的好方法。
2.如果没有类的源代码,可以使用扩展方法。
扩展方法:
1.扩展方法写着静态类中。
2.扩展方法也是静态的。但是调用时,和实例方法一样,使用对象调用。
3.如果扩展方法的名字和类中方法的签名相同,则优先类中原来的方法。
1 public static class Extension 2 { 3 public static void Print(this Student s, string str) 4 { 5 Console.WriteLine(str); 6 } 7 }
标签:write ons lin his 继承 静态 扩展 print 没有
原文地址:http://www.cnblogs.com/lztwj/p/7221265.html