前端之家收集整理的这篇文章主要介绍了
c# – 请向我解释扩展方法,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
它们可用于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