Exemplo n.º 1
0
 public static string ToString(LargeInteger data)
 {
     return(ToString(data.GetBytes()));
 }
Exemplo n.º 2
0
 public static string ToPrefixString(LargeInteger data)
 {
     return("0x" + ToString(data));
 }
Exemplo n.º 3
0
 public static string ToRpcHex(LargeInteger data)
 {
     return(ToRpcHex(data.GetBytes()));
 }