示例#1
0
 public static string ToString(LargeInteger data)
 {
     return(ToString(data.GetBytes()));
 }
示例#2
0
 public static string ToPrefixString(LargeInteger data)
 {
     return("0x" + ToString(data));
 }
示例#3
0
 public static string ToRpcHex(LargeInteger data)
 {
     return(ToRpcHex(data.GetBytes()));
 }