c# – 请向我解释扩展方法

前端之家收集整理的这篇文章主要介绍了c# – 请向我解释扩展方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我刚看了这篇帖子: What is the best or most interesting use of Extension Methods you’ve seen?

我从来没有听说过扩展方法.他们适用于所有语言吗?

他们有什么意义?在那个特定的帖子中,我不明白这个例子.

解决方法

它们可用于C#和VB.它们允许您模拟不受您控制的类的方法添加.

例如,您可以将一个WordCount方法添加到字符串中.

而不是

MyStringUtils.WordCount(“some string”)

你可以写“some string”.WordCount().

public static class MyExtensions
{
    public static int WordCount(this String str)
    {
        return MyStringUtils.WordCount( str );
    }
}

这是严格的“语法糖”,有助于提高可读性.您实际上是在创建一个静态方法,该方法将在IntelliSense中显示为目标类型.

原文链接:https://www.f2er.com/csharp/97003.html

猜你在找的C#相关文章