Click or drag to resize

Decimal128FromComponents Method

Creates a new Decimal128 value from its components.

Namespace:  MongoDB.Bson
Assembly:  MongoDB.Bson (in MongoDB.Bson.dll) Version: 2.13.1-v2-13-x1+a7f8afe27855f38f4f72157d11ba2ae73895502e
Syntax
public static Decimal128 FromComponents(
	bool isNegative,
	short exponent,
	ulong significandHighBits,
	ulong significandLowBits
)

Parameters

isNegative
Type: SystemBoolean
if set to true [is negative].
exponent
Type: SystemInt16
The exponent.
significandHighBits
Type: SystemUInt64
The signficand high bits.
significandLowBits
Type: SystemUInt64
The significand low bits.

Return Value

Type: Decimal128
A Decimal128 value.
See Also