Int128 Conversion (BigInteger to Int128) |
Converts an arbitrary-size big integer into a 128-bit integer.
Namespace:
Meta.Numerics.Extended
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public static explicit operator Int128 (
BigInteger b
)
Public Shared Narrowing Operator CType (
b As BigInteger
) As Int128
static explicit operator Int128 (
BigInteger b
)
F# does not support the declaration of new casting operators.
Parameters
- b
- Type: System.NumericsBigInteger
The big integer to convert.
Return Value
Type:
Int128The 128-bit integer with the same lower 128 bits.
See Also