System.Net.BigIntegerExtensions.ToHexadecimalString C# (CSharp) Method

ToHexadecimalString() public static method

Converts a BigInteger to a hexadecimal string.
public static ToHexadecimalString ( this bigint ) : string
bigint this A .
return string
        public static string ToHexadecimalString(this BigInteger bigint)
        {
            return bigint.ToString("X");
        }