예제 #1
0
파일: Hex.cs 프로젝트: schalk-b/bitsy
 public static string BigIntegerToHex(BigInteger value)
 {
     return BytesToHex(value.ToByteArrayUnsigned(true));
 }