System.Net.BigIntegerExtensions.ToHexadecimalString C# (CSharp) Méthode

ToHexadecimalString() public static méthode

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