Click or drag to resize

Decimal128TryParse Method

Converts the string representation of a number to its Decimal128 equivalent. A return value indicates whether the conversion succeeded or failed.

Namespace:  MongoDB.Bson
Assembly:  MongoDB.Bson (in MongoDB.Bson.dll) Version: 2.12.2+a4a3888f4fb51bb518b1eb5002effc2d47f2ea6a
Syntax
public static bool TryParse(
	string s,
	out Decimal128 result
)

Parameters

s
Type: SystemString
The string representation of the number to convert.
result
Type: MongoDB.BsonDecimal128
When this method returns, contains the Decimal128 number that is equivalent to the numeric value contained in s, if the conversion succeeded, or is zero if the conversion failed. The conversion fails if the s parameter is null, is not a number in a valid format, or represents a number less than the min value or greater than the max value. This parameter is passed uninitialized.

Return Value

Type: Boolean
true if s was converted successfully; otherwise, false.
See Also