public static bool TryParseLong(string input, InputType type, out TenHexConverter th)
 {
     th = null;
     try
     {
         th = ParseLong(input, type);
         return(true);
     }
     catch { }                           // snuff the exception
     return(false);
 }
 public static bool TryParse(string input, InputType type, out TenHexConverter th)
 {
     th = null;
     try
     {
         th = Parse(input, type);
         return(true);
     }
     catch { }
     return(false);
 }