コード例 #1
0
 public static byte[] FromString(string hex, bool prefixed = false)
 {
     return(HexBouncyCastle.Decode(prefixed ? hex.Substring(2) : hex));
 }
コード例 #2
0
ファイル: Hex.cs プロジェクト: atomix-me/atomix.client.core
 public static byte[] FromString(string hex)
 {
     return(HexBouncyCastle.Decode(hex));
 }