System.MethodExtension.HexToInt C# (CSharp) Method

HexToInt() public static method

public static HexToInt ( this value ) : int
value this
return int
        public static int HexToInt(this string value)
        {
            if (value.Length == 2)
            {
                return 0;
            }

            return Convert.ToInt32(value, 16);
        }