10 references to TryParse
System.Data (2)
fx\src\data\System\Data\Filter\ConstNode.cs (1)
110
if (Decimal.
TryParse
(sval, NumberStyles.Number, NumberFormatInfo.InvariantInfo, out r12)) {
fx\src\data\System\Data\SQLTypes\SQLMoney.cs (1)
279
else if (Decimal.
TryParse
(s, SqlNumberStyle, NumberFormatInfo.InvariantInfo, out d)) {
System.Data.Entity (2)
System\Data\Common\EntitySql\AST\Literal.cs (1)
312
if (!Decimal.
TryParse
(numberPart, NumberStyles.AllowLeadingSign | NumberStyles.AllowDecimalPoint, CultureInfo.InvariantCulture, out value))
System\Data\EntityModel\SchemaObjectModel\ScalarType.cs (1)
203
if (!Decimal.
TryParse
(text, System.Globalization.NumberStyles.Float, System.Globalization.CultureInfo.InvariantCulture, out temp))
System.Data.Services (1)
System\Data\Services\Parsing\WebConvert.cs (1)
462
if (Decimal.
TryParse
(text, NumberStyles.Float, NumberFormatInfo.InvariantInfo, out result))
System.Runtime.Serialization (1)
System\Runtime\Serialization\Json\JsonObjectDataContract.cs (1)
89
if (Decimal.
TryParse
(value, NumberStyles.Float, NumberFormatInfo.InvariantInfo, out decimalValue))
System.ServiceModel.Web (1)
System\ServiceModel\Web\IncomingWebRequestContext.cs (1)
431
if (decimal.
TryParse
(contentType.Parameters[key], numberStyles, CultureInfo.InvariantCulture, out result) &&
System.Web.Extensions (1)
Script\Serialization\JavaScriptObjectDeserializer.cs (1)
252
if (decimal.
TryParse
(input, NumberStyles.Number, CultureInfo.InvariantCulture, out dec)) {
System.Xml (2)
System\Xml\XmlConvert.cs (2)
873
if (!Decimal.
TryParse
(s, NumberStyles.AllowLeadingSign|NumberStyles.AllowDecimalPoint|NumberStyles.AllowLeadingWhite|NumberStyles.AllowTrailingWhite, NumberFormatInfo.InvariantInfo, out result)) {
884
if (!Decimal.
TryParse
(s, NumberStyles.AllowLeadingSign|NumberStyles.AllowLeadingWhite|NumberStyles.AllowTrailingWhite, NumberFormatInfo.InvariantInfo, out result)) {