System.Yaml.UriEncoding.HexToInt C# (CSharp) Méthode

HexToInt() static private méthode

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