Complex Implicit Conversion (UInt32 to Complex)

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

Defines an implicit conversion of a 32-bit unsigned integer to a complex number.

This API is not CLS-compliant. 

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

Syntax

'Declaration
Public Shared Widening Operator CType ( _
    value As UInteger _
) As Complex
public static implicit operator Complex (
    uint value
)

Parameters

  • value
    Type: System.UInt32
    The value to convert to a complex number.

Return Value

Type: System.Numerics.Complex
An object that contains the value of the value parameter as its real part and zero as its imaginary part.

Remarks

The overloads of the Implicit operator define the types from which a compiler can automatically convert a Complex object 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 an unsigned 32-bit integer to a complex number, as the following example shows. Note that the result of the conversion is a complex number whose real part is equal to the unsigned 32-bit integer and whose imaginary part is equal to zero.

Dim intValue As UInteger = 197461
Dim c1 As System.Numerics.Complex = intValue
outputBlock.Text &= c1.ToString() + vbCrLf
' The example displays the following output:
'       (197461, 0)
int intValue = 197461;
System.Numerics.Complex c1 = intValue;
outputBlock.Text += c1 + "\n";
// The example displays the following output:
//       (197461, 0)

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.