Example #1
0
 public static short?StringToNullableInt16(string str)
 {
     if (StringShortDeterminer.Is(str))
     {
         return(StringShortDeterminer.To(str));
     }
     return(null);
 }
Example #2
0
 public static short StringToInt16(string str, params IConversionImpl <string, short>[] impls)
 {
     return(StringShortDeterminer.To(str, impls));
 }
Example #3
0
 public static short StringToInt16(string str, short defaultVal = default)
 {
     return(StringShortDeterminer.To(str, defaultVal));
 }