public override string ToString()
 {
     return(B16.Encode(Buffer));
 }
 public static Hash160 FromJson(JToken token)
 {
     return(new Hash160(B16.Decode(token.ToString())));
 }
 public BinaryParser(string hex)
     : this(B16.Decode(hex))
 {
 }
Beispiel #4
0
 public static Hash256 FromHex(string token)
 {
     return(new Hash256(B16.Decode(token)));
 }