BattleNet.CdKey.ConvertFromHexDigit C# (CSharp) 메소드

ConvertFromHexDigit() 보호된 정적인 메소드

protected static ConvertFromHexDigit ( char input ) : ulong
input char
리턴 ulong
        protected static ulong ConvertFromHexDigit(char input)
        {
            if (input >= '0' && input <= '9')
                return (ulong)(input - 0x30);
            else
                return (ulong)(input - 0x37);
        }