WikiFunctions.Tools.TurnFirstToLower C# (CSharp) Method

TurnFirstToLower() public static method

Returns version of the string with first character in lower case
public static TurnFirstToLower ( string input ) : string
input string
return string
        public static string TurnFirstToLower(string input)
        {
            return (string.IsNullOrEmpty(input)) ? "" : (char.ToLower(input[0]) + input.Remove(0, 1));
        }
Tools