BigInteger Implicit Conversion (Byte to BigInteger)

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Defines an implicit conversion of an unsigned byte to a BigInteger value.

Namespace:  System.Numerics
Assembly:  System.Numerics (in System.Numerics.dll)

Syntax

'Declaration
Public Shared Widening Operator CType ( _
    value As Byte _
) As BigInteger
public static implicit operator BigInteger (
    byte value
)

Parameters

Return Value

Type: System.Numerics.BigInteger
An object that contains the value of the value parameter.

Remarks

The overloads of the Implicit(Byte to BigInteger) method define the types from which a compiler can automatically convert a BigInteger value without an explicit casting operator (in C#) or a call to a conversion function (in Visual Basic). They are widening conversions that do not involve data loss and do not throw an OverflowException. This overload lets the compiler handle conversions from a Byte value to a BigInteger value, as the following example shows.

Version Information

Silverlight

Supported in: 5, 4

Platforms

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.