C#扩展方法this

转:https://www.cnblogs.com/ScottLin/p/10175513.html

先在StringLibrary类中定义一个静态方法,如下:

C#扩展方法this
public static class StringLibrary
    {
      //第一个参数指定该方法作用于哪个类型,并且该参数以 this 修饰符为前缀,当前作用于String类型,也可作用于自定义类型 public static bool StartWithUpper(this String str) { if (String.IsNullOrEmpty(str)) return false; char ch = str[0]; return Char.IsUpper(ch); } }
C#扩展方法this

接着调用:

C#扩展方法this
[TestMethod]
        public void TestDoesNotStartWithUpper()
        {
            string[] words = { "alphabet", "Error", "zebra", "Abc", "αυτοκινητοβιομηχαν?α", "государство",
                   "1234", ".", ";", " " };

            foreach (var word in words)
            {
                bool result = word.StartWithUpper();
                Assert.IsFalse(result, $"Expected for ‘{word}‘: false; Actual:{result}");
            }
        }
C#扩展方法this

 具体可参考:C#扩展方法

 

C#扩展方法this

上一篇:VS2013.3 & VS2014 任务资源管理器


下一篇:C# 挂起 进程 PostMessage使用