Ejemplo n.º 1
0
 public static ulong?StringToNullableUInt64(string str)
 {
     if (StringULongDeterminer.Is(str))
     {
         return(StringULongDeterminer.To(str));
     }
     return(null);
 }
Ejemplo n.º 2
0
 public static ulong StringToUInt64(string str, params IConversionImpl <string, ulong>[] impls)
 {
     return(StringULongDeterminer.To(str, impls));
 }
Ejemplo n.º 3
0
 public static ulong StringToUInt64(string str, ulong defaultVal = default)
 {
     return(StringULongDeterminer.To(str, defaultVal));
 }