5 references to Parse
System.Data.Common (5)
System\Data\Common\SQLConvert.cs (1)
581return SqlDecimal.Parse((string)value); // parses invariant format and is larger has larger range then Decimal
System\Data\SQLTypes\SQLDecimal.cs (4)
1795return x.IsNull ? Null : SqlDecimal.Parse(x.Value); 3360SqlDecimal dec = Parse(reader.ReadElementString()); 3394public static readonly SqlDecimal MinValue = SqlDecimal.Parse("-99999999999999999999999999999999999999"); 3395public static readonly SqlDecimal MaxValue = SqlDecimal.Parse("99999999999999999999999999999999999999");