Big Integer 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(Byte to BigInteger) | Converts a Byte value to a BigInteger number. |
Implicit(Int128 to BigInteger) | Converts a 128 bit signed integer to a BigInteger value. |
Implicit(Int16 to BigInteger) | Converts a 16 bit signed integer to a BigInteger value. |
Implicit(Int32 to BigInteger) | Converts a 32 bit signed integer to a BigInteger value. |
Implicit(Int64 to BigInteger) | Converts a 64 bit signed integer to a BigInteger value. |
Implicit(SByte to BigInteger) | Converts a signed byte to a BigInteger value. |
Implicit(UInt128 to BigInteger) | Converts a 128 bit unsigned integer to a BigInteger value. |
Implicit(UInt16 to BigInteger) | Converts a 16 bit unsigned integer to a BigInteger value. |
Implicit(UInt32 to BigInteger) | Converts a 32 bit unsigned integer to a BigInteger value. |
Implicit(UInt64 to BigInteger) | Converts a 64 bit unsigned integer to a BigInteger value. |
Implicit Conversion (Byte to BigInteger)
Converts a Byte value to a BigInteger number.
public static implicit operator BigInteger (
byte value
)
Parameters
Return Value
BigIntegerA BigInteger value that represents the converted Byte value.
Implicit Conversion (Int128 to BigInteger)
Converts a 128 bit signed integer to a BigInteger value.
public static implicit operator BigInteger (
Int128 value
)
Parameters
Return Value
BigIntegerA BigInteger value that represents the converted 32 bit unsigned integer.
Implicit Conversion (Int16 to BigInteger)
Converts a 16 bit signed integer to a BigInteger value.
public static implicit operator BigInteger (
short value
)
Parameters
Return Value
BigIntegerA BigInteger value that represents the converted 16 bit signed integer.
Implicit Conversion (Int32 to BigInteger)
Converts a 32 bit signed integer to a BigInteger value.
public static implicit operator BigInteger (
int value
)
Parameters
Return Value
BigIntegerA BigInteger value that represents the converted 32 bit signed integer.
Implicit Conversion (Int64 to BigInteger)
Converts a 64 bit signed integer to a BigInteger value.
public static implicit operator BigInteger (
long value
)
Parameters
Return Value
BigIntegerA BigInteger value that represents the converted 64 bit signed integer.
Implicit Conversion (SByte to BigInteger)
Converts a signed byte to a BigInteger value.
public static implicit operator BigInteger (
sbyte value
)
Parameters
Return Value
BigIntegerA BigInteger value that represents the converted signed byte.
Implicit Conversion (UInt128 to BigInteger)
Converts a 128 bit unsigned integer to a BigInteger value.
public static implicit operator BigInteger (
UInt128 value
)
Parameters
Return Value
BigIntegerA BigInteger value that represents the converted 64 bit unsigned integer.
Implicit Conversion (UInt16 to BigInteger)
Converts a 16 bit unsigned integer to a BigInteger value.
public static implicit operator BigInteger (
ushort value
)
Parameters
Return Value
BigIntegerA BigInteger value that represents the converted 16 bit unsigned integer.
Implicit Conversion (UInt32 to BigInteger)
Converts a 32 bit unsigned integer to a BigInteger value.
public static implicit operator BigInteger (
uint value
)
Parameters
Return Value
BigIntegerA BigInteger value that represents the converted 32 bit unsigned integer.
Implicit Conversion (UInt64 to BigInteger)
Converts a 64 bit unsigned integer to a BigInteger value.
public static implicit operator BigInteger (
ulong value
)
Parameters
Return Value
BigIntegerA BigInteger value that represents the converted 64 bit unsigned integer.