我从来没有听说过扩展方法.他们适用于所有语言吗?
他们有什么意义?在那个特定的帖子中,我不明白这个例子.
例如,您可以将一个WordCount方法添加到字符串中.
WordCount
而不是
MyStringUtils.WordCount(“some string”)
你可以写“some string”.WordCount().
public static class MyExtensions { public static int WordCount(this String str) { return MyStringUtils.WordCount( str ); } }
这是严格的“语法糖”,有助于提高可读性.您实际上是在创建一个静态方法,该方法将在IntelliSense中显示为目标类型.