Big Float Implicit Conversion Operators
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
Overload List
Implicit(BigInteger to BigFloat) | Converts a BigInteger to a BigFloat value. |
Implicit(Byte to BigFloat) | Converts a BigInteger value to a Byte value. |
Implicit(Decimal to BigFloat) | Converts a Decimal number to a BigFloat value. |
Implicit(Double to BigFloat) | Converts a double-precision floating-point number to a BigInteger value. |
Implicit(Int16 to BigFloat) | Converts a 16 bit signed integer to a BigFloat value. |
Implicit(Int32 to BigFloat) | Converts a 32 bit signed integer to a BigFloat value. |
Implicit(Int64 to BigFloat) | Converts a 64 bit signed integer to a BigFloat value. |
Implicit(SByte to BigFloat) | Converts a signed byte to a BigFloat value. |
Implicit(Single to BigFloat) | Converts a single-precision floating-point number to a BigInteger value. |
Implicit(UInt16 to BigFloat) | Converts a 16 bit unsigned integer to a BigFloat value. |
Implicit(UInt32 to BigFloat) | Converts a 32 bit unsigned integer to a BigFloat value. |
Implicit(UInt64 to BigFloat) | Converts a 64 bit unsigned integer to a BigFloat value. |
Implicit Conversion (BigInteger to BigFloat)
Converts a BigInteger to a BigFloat value.
public static implicit operator BigFloat (
BigInteger value
)
Parameters
- value BigInteger
- The BigInteger to convert.
Return Value
BigFloatA BigFloat value with the same value as value.
Implicit Conversion (Byte to BigFloat)
Converts a BigInteger value to a Byte value.
public static implicit operator BigFloat (
byte value
)
Parameters
Return Value
BigFloatA BigFloat value that represents the converted Byte value.
Implicit Conversion (Decimal to BigFloat)
Remarks
Any digits after the decimal point in value are discarded.
Implicit Conversion (Double to BigFloat)
Converts a double-precision floating-point number to a BigInteger value.
Exceptions
Overflow | value is less than zero. -or- value is NaN. -or- value is infinite. |
Implicit Conversion (Int16 to BigFloat)
Converts a 16 bit signed integer to a BigFloat value.
public static implicit operator BigFloat (
short value
)
Parameters
Return Value
BigFloatA BigFloat value that represents the converted 16 bit signed integer.
Implicit Conversion (Int32 to BigFloat)
Converts a 32 bit signed integer to a BigFloat value.
public static implicit operator BigFloat (
int value
)
Parameters
Return Value
BigFloatA BigFloat value that represents the converted 32 bit signed integer.
Implicit Conversion (Int64 to BigFloat)
Converts a 64 bit signed integer to a BigFloat value.
public static implicit operator BigFloat (
long value
)
Parameters
Return Value
BigFloatA BigFloat value that represents the converted 64 bit signed integer.
Implicit Conversion (SByte to BigFloat)
Converts a signed byte to a BigFloat value.
public static implicit operator BigFloat (
sbyte value
)
Parameters
Return Value
BigFloatA BigFloat value that represents the converted signed byte.
Implicit Conversion (Single to BigFloat)
Converts a single-precision floating-point number to a BigInteger value.
Implicit Conversion (UInt16 to BigFloat)
Converts a 16 bit unsigned integer to a BigFloat value.
public static implicit operator BigFloat (
ushort value
)
Parameters
Return Value
BigFloatA BigFloat value that represents the converted 16 bit unsigned integer.
Implicit Conversion (UInt32 to BigFloat)
Converts a 32 bit unsigned integer to a BigFloat value.
public static implicit operator BigFloat (
uint value
)
Parameters
Return Value
BigFloatA BigFloat value that represents the converted 32 bit unsigned integer.
Implicit Conversion (UInt64 to BigFloat)
Converts a 64 bit unsigned integer to a BigFloat value.
public static implicit operator BigFloat (
ulong value
)
Parameters
Return Value
BigFloatA BigFloat value that represents the converted 64 bit unsigned integer.