コード例 #1
0
 public static UInt48 Parse(string value, IFormatProvider provider)
 {
     return(UInt48.Parse(value, NumberStyles.Integer, provider));
 }
コード例 #2
0
 public static UInt48 Parse(string value, NumberStyles style)
 {
     return(UInt48.Parse(value, style, (IFormatProvider)CultureInfo.CurrentCulture.NumberFormat));
 }
コード例 #3
0
 public static UInt48 Parse(string value)
 {
     return(UInt48.Parse(value, NumberStyles.Integer, (IFormatProvider)CultureInfo.CurrentCulture));
 }