csharp 扩展方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 扩展方法相关的知识,希望对你有一定的参考价值。

public static class ExtensionMethod
    {
        public static string UppercaseFirstLetter(this string value)
        {
            // Uppercase the first letter in the string.
            if (value.Length > 0)
            {
                char[] array = value.ToCharArray();
                array[0] = char.ToUpper(array[0]);
                return new string(array);
            }
            return value;
        }
    }

//"THIS" in the signature of a method means method can be called in the class preceding the keyword this

class Program
    {
        static void Main(string[] args)
        {
            string value = "dot net perls";
            value = value.UppercaseFirstLetter();
            Console.WriteLine(value);
            Console.ReadLine();
        }
    }

以上是关于csharp 扩展方法的主要内容,如果未能解决你的问题,请参考以下文章

csharp JSON.NET:JObject扩展方法

csharp 数组扩展方法

csharp 扩展方法

csharp 扩展方法

csharp 扩展方法

csharp 很少使用LINQ扩展方法