Complex Implicit Conversion (Byte to Complex)
Defines an implicit conversion of an unsigned byte to a complex number.
Assembly: System.Numerics (in System.Numerics.dll)
Parameters
- value
-
Type:
System::Byte
The value to convert to a complex number.
Return Value
Type: System.Numerics::ComplexAn object that contains the value of the value parameter as its real part and zero as its imaginary part.
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 Byte value 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 byte value and whose imaginary part is equal to zero.
Available since 8
.NET Framework
Available since 4.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 4.0
Windows Phone
Available since 8.1