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

ToPascalCase() public static method

Converts the string to pascal case.
public static ToPascalCase ( this lowercaseAndUnderscoredWord ) : string
lowercaseAndUnderscoredWord this The lowercase and underscored word.
return string
        public static string ToPascalCase(this string lowercaseAndUnderscoredWord)
        {
            return ToPascalCase(lowercaseAndUnderscoredWord, true);
        }

Same methods

Inflector::ToPascalCase ( this text, bool removeUnderscores ) : string