Complex.Implicit Operador
Definição
Sobrecargas
| Implicit(UInt64 to Complex) |
Define uma conversão implícita de um inteiro sem sinal de 64 bits em um número complexo.Defines an implicit conversion of a 64-bit unsigned integer to a complex number. Esta API não compatível com CLS.This API is not CLS-compliant. |
| Implicit(UInt32 to Complex) |
Define uma conversão implícita de um inteiro sem sinal de 32 bits em um número complexo.Defines an implicit conversion of a 32-bit unsigned integer to a complex number. Esta API não compatível com CLS.This API is not CLS-compliant. |
| Implicit(UInt16 to Complex) |
Define uma conversão implícita de um inteiro sem sinal de 16 bits em um número complexo.Defines an implicit conversion of a 16-bit unsigned integer to a complex number. Esta API não compatível com CLS.This API is not CLS-compliant. |
| Implicit(Single to Complex) |
Define uma conversão explícita de um número de ponto flutuante de precisão simples como um número complexo.Defines an implicit conversion of a single-precision floating-point number to a complex number. |
| Implicit(SByte to Complex) |
Define uma conversão implícita de um byte com sinal em um número complexo.Defines an implicit conversion of a signed byte to a complex number. Esta API não compatível com CLS.This API is not CLS-compliant. |
| Implicit(Int32 to Complex) |
Define uma conversão implícita de um inteiro com sinal de 32 bits em um número complexo.Defines an implicit conversion of a 32-bit signed integer to a complex number. |
| Implicit(Int16 to Complex) |
Define uma conversão implícita de um inteiro com sinal de 16 bits em um número complexo.Defines an implicit conversion of a 16-bit signed integer to a complex number. |
| Implicit(Double to Complex) |
Define uma conversão explícita de um número de ponto flutuante de precisão dupla como um número complexo.Defines an implicit conversion of a double-precision floating-point number to a complex number. |
| Implicit(Byte to Complex) |
Define uma conversão implícita de um byte sem sinal em um número complexo.Defines an implicit conversion of an unsigned byte to a complex number. |
| Implicit(Int64 to Complex) |
Define uma conversão implícita de um inteiro com sinal de 64 bits em um número complexo.Defines an implicit conversion of a 64-bit signed integer to a complex number. |
Implicit(UInt64 to Complex)
Importante
Esta API não está em conformidade com CLS.
Define uma conversão implícita de um inteiro sem sinal de 64 bits em um número complexo.Defines an implicit conversion of a 64-bit unsigned integer to a complex number.
Esta API não compatível com CLS.This API is not CLS-compliant.
public:
static operator System::Numerics::Complex(System::UInt64 value);
[System.CLSCompliant(false)]
public static implicit operator System.Numerics.Complex (ulong value);
[<System.CLSCompliant(false)>]
static member op_Implicit : uint64 -> System.Numerics.Complex
Public Shared Widening Operator CType (value As ULong) As Complex
Parâmetros
- value
- UInt64
O valor a ser convertido em um número complexo.The value to convert to a complex number.
Retornos
Um objeto que contém o valor do parâmetro value como sua parte real e zero como sua parte imaginária.An object that contains the value of the value parameter as its real part and zero as its imaginary part.
- Atributos
Comentários
As sobrecargas do Implicit operador definem os tipos dos quais um compilador pode converter automaticamente um Complex objeto sem um operador de conversão explícito (em C#) ou uma chamada para uma função de conversão (em Visual Basic).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). Eles estão ampliando conversões que não envolvem perda de dados e não lançam um OverflowException .They are widening conversions that do not involve data loss and do not throw an OverflowException.
Essa sobrecarga permite que o compilador manipule conversões de um inteiro de 64 bits não assinado para um número complexo, como mostra o exemplo a seguir.This overload lets the compiler handle conversions from an unsigned 64-bit integer to a complex number, as the following example shows. Observe que o resultado da conversão é um número complexo cuja parte real é igual ao inteiro de 64 bits não assinado e cuja parte imaginária é igual a zero.Note that the result of the conversion is a complex number whose real part is equal to the unsigned 64-bit integer and whose imaginary part is equal to zero.
ulong longValue = 951034217;
System.Numerics.Complex c1 = longValue;
Console.WriteLine(c1);
// The example displays the following output:
// (951034217, 0)
Dim longValue As ULong = 951034217
Dim c1 As System.Numerics.Complex = longValue
Console.WriteLine(c1)
' The example displays the following output:
' (951034217, 0)
Aplica-se a
Implicit(UInt32 to Complex)
Importante
Esta API não está em conformidade com CLS.
Define uma conversão implícita de um inteiro sem sinal de 32 bits em um número complexo.Defines an implicit conversion of a 32-bit unsigned integer to a complex number.
Esta API não compatível com CLS.This API is not CLS-compliant.
public:
static operator System::Numerics::Complex(System::UInt32 value);
[System.CLSCompliant(false)]
public static implicit operator System.Numerics.Complex (uint value);
[<System.CLSCompliant(false)>]
static member op_Implicit : uint32 -> System.Numerics.Complex
Public Shared Widening Operator CType (value As UInteger) As Complex
Parâmetros
- value
- UInt32
O valor a ser convertido em um número complexo.The value to convert to a complex number.
Retornos
Um objeto que contém o valor do parâmetro value como sua parte real e zero como sua parte imaginária.An object that contains the value of the value parameter as its real part and zero as its imaginary part.
- Atributos
Comentários
As sobrecargas do Implicit operador definem os tipos dos quais um compilador pode converter automaticamente um Complex objeto sem um operador de conversão explícito (em C#) ou uma chamada para uma função de conversão (em Visual Basic).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). Eles estão ampliando conversões que não envolvem perda de dados e não lançam um OverflowException .They are widening conversions that do not involve data loss and do not throw an OverflowException.
Essa sobrecarga permite que o compilador manipule conversões de um inteiro de 32 bits não assinado para um número complexo, como mostra o exemplo a seguir.This overload lets the compiler handle conversions from an unsigned 32-bit integer to a complex number, as the following example shows. Observe que o resultado da conversão é um número complexo cuja parte real é igual ao inteiro de 32 bits não assinado e cuja parte imaginária é igual a zero.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.
uint value = 197461;
System.Numerics.Complex c1 = value;
Console.WriteLine(c1);
// The example displays the following output:
// (197461, 0)
Dim intValue As UInteger = 197461
Dim c1 As System.Numerics.Complex = intValue
Console.WriteLine(c1)
' The example displays the following output:
' (197461, 0)
Aplica-se a
Implicit(UInt16 to Complex)
Importante
Esta API não está em conformidade com CLS.
Define uma conversão implícita de um inteiro sem sinal de 16 bits em um número complexo.Defines an implicit conversion of a 16-bit unsigned integer to a complex number.
Esta API não compatível com CLS.This API is not CLS-compliant.
public:
static operator System::Numerics::Complex(System::UInt16 value);
[System.CLSCompliant(false)]
public static implicit operator System.Numerics.Complex (ushort value);
[<System.CLSCompliant(false)>]
static member op_Implicit : uint16 -> System.Numerics.Complex
Public Shared Widening Operator CType (value As UShort) As Complex
Parâmetros
- value
- UInt16
O valor a ser convertido em um número complexo.The value to convert to a complex number.
Retornos
Um objeto que contém o valor do parâmetro value como sua parte real e zero como sua parte imaginária.An object that contains the value of the value parameter as its real part and zero as its imaginary part.
- Atributos
Comentários
As sobrecargas do Implicit operador definem os tipos dos quais um compilador pode converter automaticamente um Complex objeto sem um operador de conversão explícito (em C#) ou uma chamada para uma função de conversão (em Visual Basic).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). Eles estão ampliando conversões que não envolvem perda de dados e não lançam um OverflowException .They are widening conversions that do not involve data loss and do not throw an OverflowException.
Essa sobrecarga permite que o compilador manipule conversões de um inteiro de 16 bits não assinado para um número complexo, como mostra o exemplo a seguir.This overload lets the compiler handle conversions from an unsigned 16-bit integer to a complex number, as the following example shows. Observe que o resultado da conversão é um número complexo cuja parte real é igual ao inteiro de 16 bits não assinado e cuja parte imaginária é igual a zero.Note that the result of the conversion is a complex number whose real part is equal to the unsigned 16-bit integer and whose imaginary part is equal to zero.
ushort shortValue = 421;
System.Numerics.Complex c1 = shortValue;
Console.WriteLine(c1);
// The example displays the following output:
// (421, 0)
Dim shortValue As UShort = 421
Dim c1 As System.Numerics.Complex = shortValue
Console.WriteLine(c1)
' The example displays the following output:
' (421, 0)
Aplica-se a
Implicit(Single to Complex)
Define uma conversão explícita de um número de ponto flutuante de precisão simples como um número complexo.Defines an implicit conversion of a single-precision floating-point number to a complex number.
public:
static operator System::Numerics::Complex(float value);
public static implicit operator System.Numerics.Complex (float value);
static member op_Implicit : single -> System.Numerics.Complex
Public Shared Widening Operator CType (value As Single) As Complex
Parâmetros
- value
- Single
O valor a ser convertido em um número complexo.The value to convert to a complex number.
Retornos
Um objeto que contém o valor do parâmetro value como sua parte real e zero como sua parte imaginária.An object that contains the value of the value parameter as its real part and zero as its imaginary part.
Comentários
As sobrecargas do Implicit operador definem os tipos dos quais um compilador pode converter automaticamente um Complex objeto sem um operador de conversão explícito (em C#) ou uma chamada para uma função de conversão (em Visual Basic).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). Eles estão ampliando conversões que não envolvem perda de dados e não lançam um OverflowException .They are widening conversions that do not involve data loss and do not throw an OverflowException.
Essa sobrecarga permite que o compilador Manipule as conversões de um Single valor para um número complexo, como mostra o exemplo a seguir.This overload lets the compiler handle conversions from a Single value to a complex number, as the following example shows. Observe que o resultado da conversão é um número complexo cuja parte real é igual ao Single valor e cuja parte imaginário é igual a zero.Note that the result of the conversion is a complex number whose real part is equal to the Single value and whose imaginary part is equal to zero.
float singleValue = 1.032e-08f;
System.Numerics.Complex c1 = singleValue;
Console.WriteLine(c1);
// The example displays the following output:
// (1.03199999657022E-08, 0)
Dim singleValue As Single = 1.032e-08
Dim c1 As System.Numerics.Complex = singleValue
Console.WriteLine(c1)
' The example displays the following output:
' (1.03199999657022E-08, 0)
Aplica-se a
Implicit(SByte to Complex)
Importante
Esta API não está em conformidade com CLS.
Define uma conversão implícita de um byte com sinal em um número complexo.Defines an implicit conversion of a signed byte to a complex number.
Esta API não compatível com CLS.This API is not CLS-compliant.
public:
static operator System::Numerics::Complex(System::SByte value);
[System.CLSCompliant(false)]
public static implicit operator System.Numerics.Complex (sbyte value);
[<System.CLSCompliant(false)>]
static member op_Implicit : sbyte -> System.Numerics.Complex
Public Shared Widening Operator CType (value As SByte) As Complex
Parâmetros
- value
- SByte
O valor a ser convertido em um número complexo.The value to convert to a complex number.
Retornos
Um objeto que contém o valor do parâmetro value como sua parte real e zero como sua parte imaginária.An object that contains the value of the value parameter as its real part and zero as its imaginary part.
- Atributos
Comentários
As sobrecargas do Implicit operador definem os tipos dos quais um compilador pode converter automaticamente um Complex objeto sem um operador de conversão explícito (em C#) ou uma chamada para uma função de conversão (em Visual Basic).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). Eles estão ampliando conversões que não envolvem perda de dados e não lançam um OverflowException .They are widening conversions that do not involve data loss and do not throw an OverflowException.
Essa sobrecarga permite que o compilador manipule conversões de um byte assinado para um número complexo, como mostra o exemplo a seguir.This overload lets the compiler handle conversions from a signed byte to a complex number, as the following example shows. Observe que o resultado da conversão é um número complexo cuja parte real é igual ao byte assinado e cuja parte imaginário é igual a zero.Note that the result of the conversion is a complex number whose real part is equal to the signed byte and whose imaginary part is equal to zero.
sbyte sbyteValue = -12;
System.Numerics.Complex c1 = sbyteValue;
Console.WriteLine(c1);
// The example displays the following output:
// (-12, 0)
Dim sbyteValue As SByte = -12
Dim c1 As System.Numerics.Complex = sbyteValue
Console.WriteLine(c1)
' The example displays the following output:
' (-12, 0)
Aplica-se a
Implicit(Int32 to Complex)
Define uma conversão implícita de um inteiro com sinal de 32 bits em um número complexo.Defines an implicit conversion of a 32-bit signed integer to a complex number.
public:
static operator System::Numerics::Complex(int value);
public static implicit operator System.Numerics.Complex (int value);
static member op_Implicit : int -> System.Numerics.Complex
Public Shared Widening Operator CType (value As Integer) As Complex
Parâmetros
- value
- Int32
O valor a ser convertido em um número complexo.The value to convert to a complex number.
Retornos
Um objeto que contém o valor do parâmetro value como sua parte real e zero como sua parte imaginária.An object that contains the value of the value parameter as its real part and zero as its imaginary part.
Comentários
As sobrecargas do Implicit operador definem os tipos dos quais um compilador pode converter automaticamente um Complex objeto sem um operador de conversão explícito (em C#) ou uma chamada para uma função de conversão (em Visual Basic).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). Eles estão ampliando conversões que não envolvem perda de dados e não lançam um OverflowException .They are widening conversions that do not involve data loss and do not throw an OverflowException.
Essa sobrecarga permite que o compilador manipule conversões de um inteiro assinado de 32 bits para um número complexo, como mostra o exemplo a seguir.This overload lets the compiler handle conversions from a signed 32-bit integer to a complex number, as the following example shows. Observe que o resultado da conversão é um número complexo cuja parte real é igual ao inteiro de 32 bits assinado e cuja parte imaginário é igual a zero.Note that the result of the conversion is a complex number whose real part is equal to the signed 32-bit integer and whose imaginary part is equal to zero.
int intValue = 1034217;
System.Numerics.Complex c1 = intValue;
Console.WriteLine(c1);
// The example displays the following output:
// (1034217, 0)
Dim intValue As Integer = 1034217
Dim c1 As System.Numerics.Complex = intValue
Console.WriteLine(c1)
' The example displays the following output:
' (1034217, 0)
Aplica-se a
Implicit(Int16 to Complex)
Define uma conversão implícita de um inteiro com sinal de 16 bits em um número complexo.Defines an implicit conversion of a 16-bit signed integer to a complex number.
public:
static operator System::Numerics::Complex(short value);
public static implicit operator System.Numerics.Complex (short value);
static member op_Implicit : int16 -> System.Numerics.Complex
Public Shared Widening Operator CType (value As Short) As Complex
Parâmetros
- value
- Int16
O valor a ser convertido em um número complexo.The value to convert to a complex number.
Retornos
Um objeto que contém o valor do parâmetro value como sua parte real e zero como sua parte imaginária.An object that contains the value of the value parameter as its real part and zero as its imaginary part.
Comentários
As sobrecargas do Implicit operador definem os tipos dos quais um compilador pode converter automaticamente um Complex objeto sem um operador de conversão explícito (em C#) ou uma chamada para uma função de conversão (em Visual Basic).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). Eles estão ampliando conversões que não envolvem perda de dados e não lançam um OverflowException .They are widening conversions that do not involve data loss and do not throw an OverflowException.
Essa sobrecarga permite que o compilador manipule conversões de um inteiro de 16 bits assinado para um número complexo, como mostra o exemplo a seguir.This overload lets the compiler handle conversions from a signed 16-bit integer to a complex number, as the following example shows. Observe que o resultado da conversão é um número complexo cuja parte real é igual ao inteiro de 16 bits assinado e cuja parte imaginário é igual a zero.Note that the result of the conversion is a complex number whose real part is equal to the signed 16-bit integer and whose imaginary part is equal to zero.
short shortValue = 16024;
System.Numerics.Complex c1 = shortValue;
Console.WriteLine(c1);
// The example displays the following output:
// (16024, 0)
Dim shortValue As Short = 16024
Dim c1 As System.Numerics.Complex = shortValue
Console.WriteLine(c1)
' The example displays the following output:
' (16024, 0)
Aplica-se a
Implicit(Double to Complex)
Define uma conversão explícita de um número de ponto flutuante de precisão dupla como um número complexo.Defines an implicit conversion of a double-precision floating-point number to a complex number.
public:
static operator System::Numerics::Complex(double value);
public static implicit operator System.Numerics.Complex (double value);
static member op_Implicit : double -> System.Numerics.Complex
Public Shared Widening Operator CType (value As Double) As Complex
Parâmetros
- value
- Double
O valor a ser convertido em um número complexo.The value to convert to a complex number.
Retornos
Um objeto que contém o valor do parâmetro value como sua parte real e zero como sua parte imaginária.An object that contains the value of the value parameter as its real part and zero as its imaginary part.
Comentários
As sobrecargas do Implicit operador definem os tipos dos quais um compilador pode converter automaticamente um Complex objeto sem um operador de conversão explícito (em C#) ou uma chamada para uma função de conversão (em Visual Basic).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). Eles estão ampliando conversões que não envolvem perda de dados e não lançam um OverflowException .They are widening conversions that do not involve data loss and do not throw an OverflowException.
Essa sobrecarga permite que o compilador Manipule as conversões de um Double valor para um número complexo, como mostra o exemplo a seguir.This overload lets the compiler handle conversions from a Double value to a complex number, as the following example shows. Observe que o resultado da conversão é um número complexo cuja parte real é igual ao Double valor e cuja parte imaginário é igual a zero.Note that the result of the conversion is a complex number whose real part is equal to the Double value and whose imaginary part is equal to zero.
double doubleValue = 1.032e-16;
System.Numerics.Complex c1 = doubleValue;
Console.WriteLine(c1);
// The example displays the following output:
// (1.032E-16, 0)
Dim doubleValue As Double = 1.032e-16
Dim c1 As System.Numerics.Complex = doubleValue
Console.WriteLine(c1)
' The example displays the following output:
' (1.032E-16, 0)
Aplica-se a
Implicit(Byte to Complex)
Define uma conversão implícita de um byte sem sinal em um número complexo.Defines an implicit conversion of an unsigned byte to a complex number.
public:
static operator System::Numerics::Complex(System::Byte value);
public static implicit operator System.Numerics.Complex (byte value);
static member op_Implicit : byte -> System.Numerics.Complex
Public Shared Widening Operator CType (value As Byte) As Complex
Parâmetros
- value
- Byte
O valor a ser convertido em um número complexo.The value to convert to a complex number.
Retornos
Um objeto que contém o valor do parâmetro value como sua parte real e zero como sua parte imaginária.An object that contains the value of the value parameter as its real part and zero as its imaginary part.
Comentários
As sobrecargas do Implicit operador definem os tipos dos quais um compilador pode converter automaticamente um Complex objeto sem um operador de conversão explícito (em C#) ou uma chamada para uma função de conversão (em Visual Basic).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). Eles estão ampliando conversões que não envolvem perda de dados e não lançam um OverflowException .They are widening conversions that do not involve data loss and do not throw an OverflowException.
Essa sobrecarga permite que o compilador Manipule as conversões de um Byte valor para um número complexo, como mostra o exemplo a seguir.This overload lets the compiler handle conversions from a Byte value to a complex number, as the following example shows. Observe que o resultado da conversão é um número complexo cuja parte real é igual ao Byte valor e cuja parte imaginário é igual a zero.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.
byte byteValue = 122;
System.Numerics.Complex c1 = byteValue;
Console.WriteLine(c1);
// The example displays the following output:
// (122, 0)
Dim byteValue As Byte = 122
Dim c1 As System.Numerics.Complex = byteValue
Console.WriteLine(c1)
' The example displays the following output:
' (122, 0)
Aplica-se a
Implicit(Int64 to Complex)
Define uma conversão implícita de um inteiro com sinal de 64 bits em um número complexo.Defines an implicit conversion of a 64-bit signed integer to a complex number.
public:
static operator System::Numerics::Complex(long value);
public static implicit operator System.Numerics.Complex (long value);
static member op_Implicit : int64 -> System.Numerics.Complex
Public Shared Widening Operator CType (value As Long) As Complex
Parâmetros
- value
- Int64
O valor a ser convertido em um número complexo.The value to convert to a complex number.
Retornos
Um objeto que contém o valor do parâmetro value como sua parte real e zero como sua parte imaginária.An object that contains the value of the value parameter as its real part and zero as its imaginary part.
Comentários
As sobrecargas do Implicit operador definem os tipos dos quais um compilador pode converter automaticamente um Complex objeto sem um operador de conversão explícito (em C#) ou uma chamada para uma função de conversão (em Visual Basic).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). Eles estão ampliando conversões que não envolvem perda de dados e não lançam um OverflowException .They are widening conversions that do not involve data loss and do not throw an OverflowException.
Essa sobrecarga permite que o compilador manipule conversões de um inteiro assinado de 64 bits para um número complexo, como mostra o exemplo a seguir.This overload lets the compiler handle conversions from a signed 64-bit integer to a complex number, as the following example shows. Observe que o resultado da conversão é um número complexo cuja parte real é igual ao inteiro de 64 bits assinado e cuja parte imaginário é igual a zero.Note that the result of the conversion is a complex number whose real part is equal to the signed 64-bit integer and whose imaginary part is equal to zero.
long longValue = 951034217;
System.Numerics.Complex c1 = longValue;
Console.WriteLine(c1);
// The example displays the following output:
// (951034217, 0)
Dim longValue As Long = 951034217
Dim c1 As System.Numerics.Complex = longValue
Console.WriteLine(c1)
' The example displays the following output:
' (951034217, 0)