Complex Implicit Conversion (SByte to Complex)

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

Defines an implicit conversion of a signed byte 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 SByte _
) As Complex
public static implicit operator Complex (
    sbyte value
)

Parameters

  • value
    Type: System.SByte
    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 a signed byte 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 signed byte value and whose imaginary part is equal to zero.

Dim sbyteValue As SByte = -12
Dim c1 As System.Numerics.Complex = sbyteValue
outputBlock.Text &= c1.ToString() + vbCrLf
' The example displays the following output:
'       (-12, 0)
sbyte sbyteValue = -12;
System.Numerics.Complex c1 = sbyteValue;
outputBlock.Text += c1 + "\n";
// The example displays the following output:
//       (-12, 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.