System.Yaml.UriEncoding.HexToInt C# (CSharp) Method

HexToInt() static private method

static private HexToInt ( char c ) : int
c char
return int
        static int HexToInt(char c)
        {
            return c <= '9' ? c - '0' : c < 'Z' ? c - 'A' + 10 : c - 'a' + 10;
        }