Aqueduct.Extensions.Inflector.MakeInitialCaps C# (CSharp) Method

MakeInitialCaps() public static method

Makes the initial caps.
public static MakeInitialCaps ( this word ) : string
word this The word.
return string
        public static string MakeInitialCaps(this string word)
        {
            return String.Concat(word.Substring(0, 1).ToUpper(), word.Substring(1).ToLower());
        }