示例#1
0
文件: H160.cs 项目: bryllite/web4b-cs
 public static bool TryParse(string hex, out H160 h160)
 {
     try
     {
         h160 = Parse(hex);
         return(true);
     }
     catch
     {
         h160 = null;
         return(false);
     }
 }
示例#2
0
文件: H160.cs 项目: bryllite/web4b-cs
 public static bool TryParse(byte[] bytes, out H160 h160)
 {
     try
     {
         h160 = Parse(bytes);
         return(true);
     }
     catch
     {
         h160 = null;
         return(false);
     }
 }