Alsing.Text.CharUtils.ToUpper C# (CSharp) Method

ToUpper() public static method

public static ToUpper ( char c ) : char
c char
return char
        public static char ToUpper(char c)
        {
            return UpperCharLookup[c];
        }