BigInteger Implicit  Conversion Operators

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

Implicit(Byte to BigInteger) Converts a Byte value to a BigInteger number.
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(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.
C#
public static implicit operator BigInteger (
	byte value
)

Parameters

value  Byte
A Byte

Return Value

BigInteger
A BigInteger value that represents the converted Byte value.

Implicit Conversion (Int16 to BigInteger)

Converts a 16 bit signed integer to a BigInteger value.
C#
public static implicit operator BigInteger (
	short value
)

Parameters

value  Int16
A Int16

Return Value

BigInteger
A 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.
C#
public static implicit operator BigInteger (
	int value
)

Parameters

value  Int32
A Int32

Return Value

BigInteger
A 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.
C#
public static implicit operator BigInteger (
	long value
)

Parameters

value  Int64
A Int64

Return Value

BigInteger
A BigInteger value that represents the converted 64 bit signed integer.

Implicit Conversion (SByte to BigInteger)

Converts a signed byte to a BigInteger value.
C#
public static implicit operator BigInteger (
	sbyte value
)

Parameters

value  SByte
A Byte

Return Value

BigInteger
A BigInteger value that represents the converted signed byte.

Implicit Conversion (UInt16 to BigInteger)

Converts a 16 bit unsigned integer to a BigInteger value.
C#
public static implicit operator BigInteger (
	ushort value
)

Parameters

value  UInt16
A UInt16

Return Value

BigInteger
A 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.
C#
public static implicit operator BigInteger (
	uint value
)

Parameters

value  UInt32
A UInt32

Return Value

BigInteger
A 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.
C#
public static implicit operator BigInteger (
	ulong value
)

Parameters

value  UInt64
A UInt64

Return Value

BigInteger
A BigInteger value that represents the converted 64 bit unsigned integer.

See Also