示例#1
0
文件: Hex.cs 项目: schalk-b/bitsy
 public static string BigIntegerToHex(BigInteger value)
 {
     return BytesToHex(value.ToByteArrayUnsigned(true));
 }