framework 3.0新特性——扩展方法

    技术2024-12-03  16

    发现一个很奇妙的东西,是属于3.0的东西,叫扩展方法。非常简单,代码如下:

    public class Test { public Test() { } public void TestMethod() { string str = "abc"; Console.WriteLine(str.MyGetLength()); } } public static class TestExtension { public static int MyGetLength(this string s) { return s.Length; } }

     

     

     

     

     

     

     

    最新回复(0)