System.Net.BigIntegerExtensions.ToHexadecimalString C# (CSharp) 메소드

ToHexadecimalString() 공개 정적인 메소드

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