Complex.Implicit 操作员
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
定义 Complex 对象与其他类型之间的隐式转换。
重载
Implicit(SByte to Complex) |
定义从带符号字节到复数的隐式转换。 此 API 不兼容 CLS。 |
Implicit(UIntPtr to Complex) |
将值隐式转换为 UIntPtr 双精度复数。 |
Implicit(UInt64 to Complex) |
定义从 64 位无符号整数到复数的隐式转换。 此 API 不兼容 CLS。 |
Implicit(UInt32 to Complex) |
定义从 32 位无符号整数到复数的隐式转换。 此 API 不兼容 CLS。 |
Implicit(UInt16 to Complex) |
定义从 16 位无符号整数到复数的隐式转换。 此 API 不兼容 CLS。 |
Implicit(Single to Complex) |
定义从单精度浮点数到复数的隐式转换。 |
Implicit(IntPtr to Complex) |
将值隐式转换为 IntPtr 双精度复数。 |
Implicit(Double to Complex) |
定义从双精度浮点数到复数的隐式转换。 |
Implicit(Int32 to Complex) |
定义从 32 位带符号整数到复数的隐式转换。 |
Implicit(Int16 to Complex) |
定义从 16 位带符号整数到复数的隐式转换。 |
Implicit(Half to Complex) |
将值隐式转换为 Half 双精度复数。 |
Implicit(Int64 to Complex) |
定义从 64 位带符号整数到复数的隐式转换。 |
Implicit(Char to Complex) |
将值隐式转换为 Char 双精度复数。 |
Implicit(Byte to Complex) |
定义从无符号字节到复数的隐式转换。 |
Implicit(SByte to Complex)
- Source:
- Complex.cs
- Source:
- Complex.cs
- Source:
- Complex.cs
重要
此 API 不符合 CLS。
定义从带符号字节到复数的隐式转换。
此 API 不兼容 CLS。
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
参数
- value
- SByte
要转换为复数的值。
返回
一个对象,其中使用 value
参数的值作为其实部,并使用零作为其虚部。
- 属性
注解
运算符的 Implicit 重载定义类型,编译器可以从中自动转换 Complex 对象,而无需在 C#) 中 (显式强制转换运算符或调用 Visual Basic) 中 (转换函数。 它们正在扩大不涉及数据丢失且不引发 的 OverflowException转换。
此重载允许编译器处理从有符号字节到复数的转换,如以下示例所示。 请注意,转换的结果是一个复数,其实部分等于带符号字节,其虚部分等于零。
sbyte sbyteValue = -12;
System.Numerics.Complex c1 = sbyteValue;
Console.WriteLine(c1);
// The example displays the following output:
// (-12, 0)
let sbyteValue = -12
let c1: System.Numerics.Complex = sbyteValue
printfn $"{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)
适用于
Implicit(UIntPtr to Complex)
- Source:
- Complex.cs
- Source:
- Complex.cs
- Source:
- Complex.cs
重要
此 API 不符合 CLS。
将值隐式转换为 UIntPtr 双精度复数。
public:
static operator System::Numerics::Complex(UIntPtr value);
[System.CLSCompliant(false)]
public static implicit operator System.Numerics.Complex (UIntPtr value);
[<System.CLSCompliant(false)>]
static member op_Implicit : unativeint -> System.Numerics.Complex
Public Shared Widening Operator CType (value As UIntPtr) As Complex
参数
- value
-
UIntPtr
unativeint
要转换的值。
返回
value
转换为双精度复数。
- 属性
适用于
Implicit(UInt64 to Complex)
- Source:
- Complex.cs
- Source:
- Complex.cs
- Source:
- Complex.cs
重要
此 API 不符合 CLS。
定义从 64 位无符号整数到复数的隐式转换。
此 API 不兼容 CLS。
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
参数
- value
- UInt64
要转换为复数的值。
返回
一个对象,其中使用 value
参数的值作为其实部,并使用零作为其虚部。
- 属性
注解
运算符的 Implicit 重载定义类型,编译器可以从中自动转换 Complex 对象,而无需在 C#) 中 (显式强制转换运算符或调用 Visual Basic) 中 (转换函数。 它们正在扩大不涉及数据丢失且不引发 的 OverflowException转换。
此重载允许编译器处理从无符号 64 位整数到复数的转换,如以下示例所示。 请注意,转换的结果是一个复数,其实际部分等于无符号 64 位整数,其虚部分等于零。
ulong longValue = 951034217;
System.Numerics.Complex c1 = longValue;
Console.WriteLine(c1);
// The example displays the following output:
// (951034217, 0)
let longValue = 951034217
let c1: System.Numerics.Complex = longValue
printfn $"{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)
适用于
Implicit(UInt32 to Complex)
- Source:
- Complex.cs
- Source:
- Complex.cs
- Source:
- Complex.cs
重要
此 API 不符合 CLS。
定义从 32 位无符号整数到复数的隐式转换。
此 API 不兼容 CLS。
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
参数
- value
- UInt32
要转换为复数的值。
返回
一个对象,其中使用 value
参数的值作为其实部,并使用零作为其虚部。
- 属性
注解
运算符的 Implicit 重载定义类型,编译器可以从中自动转换 Complex 对象,而无需在 C#) 中 (显式强制转换运算符或调用 Visual Basic) 中 (转换函数。 它们正在扩大不涉及数据丢失且不引发 的 OverflowException转换。
此重载允许编译器处理从无符号 32 位整数到复数的转换,如以下示例所示。 请注意,转换的结果是一个复数,其实际部分等于无符号 32 位整数,其虚部分等于零。
uint value = 197461;
System.Numerics.Complex c1 = value;
Console.WriteLine(c1);
// The example displays the following output:
// (197461, 0)
let value = 197461
let c1: System.Numerics.Complex = value
printfn $"{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)
适用于
Implicit(UInt16 to Complex)
- Source:
- Complex.cs
- Source:
- Complex.cs
- Source:
- Complex.cs
重要
此 API 不符合 CLS。
定义从 16 位无符号整数到复数的隐式转换。
此 API 不兼容 CLS。
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
参数
- value
- UInt16
要转换为复数的值。
返回
一个对象,其中使用 value
参数的值作为其实部,并使用零作为其虚部。
- 属性
注解
运算符的 Implicit 重载定义类型,编译器可以从中自动转换 Complex 对象,而无需在 C#) 中 (显式强制转换运算符或调用 Visual Basic) 中 (转换函数。 它们正在扩大不涉及数据丢失且不引发 的 OverflowException转换。
此重载允许编译器处理从无符号 16 位整数到复数的转换,如以下示例所示。 请注意,转换的结果是一个复数,其实际部分等于无符号 16 位整数,其虚部分等于零。
ushort shortValue = 421;
System.Numerics.Complex c1 = shortValue;
Console.WriteLine(c1);
// The example displays the following output:
// (421, 0)
let shortValue = 421
let c1: System.Numerics.Complex = shortValue
printfn $"{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)
适用于
Implicit(Single to Complex)
- Source:
- Complex.cs
- Source:
- Complex.cs
- Source:
- Complex.cs
定义从单精度浮点数到复数的隐式转换。
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
参数
- value
- Single
要转换为复数的值。
返回
一个对象,其中使用 value
参数的值作为其实部,并使用零作为其虚部。
注解
运算符的 Implicit 重载定义类型,编译器可以从中自动转换 Complex 对象,而无需在 C#) 中 (显式强制转换运算符或调用 Visual Basic) 中 (转换函数。 它们正在扩大不涉及数据丢失且不引发 的 OverflowException转换。
此重载允许编译器处理从 Single 值到复数的转换,如以下示例所示。 请注意,转换的结果是一个复数,其实际部分等于值, Single 其虚部分等于零。
float singleValue = 1.032e-08f;
System.Numerics.Complex c1 = singleValue;
Console.WriteLine(c1);
// The example displays the following output:
// (1.03199999657022E-08, 0)
let singleValue = 1.032e-08f
let c1: System.Numerics.Complex = singleValue
printfn $"{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)
适用于
Implicit(IntPtr to Complex)
- Source:
- Complex.cs
- Source:
- Complex.cs
- Source:
- Complex.cs
将值隐式转换为 IntPtr 双精度复数。
public:
static operator System::Numerics::Complex(IntPtr value);
public static implicit operator System.Numerics.Complex (IntPtr value);
static member op_Implicit : nativeint -> System.Numerics.Complex
Public Shared Widening Operator CType (value As IntPtr) As Complex
参数
- value
-
IntPtr
nativeint
要转换的值。
返回
value
转换为双精度复数。
适用于
Implicit(Double to Complex)
- Source:
- Complex.cs
- Source:
- Complex.cs
- Source:
- Complex.cs
定义从双精度浮点数到复数的隐式转换。
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
参数
- value
- Double
要转换为复数的值。
返回
一个对象,其中使用 value
参数的值作为其实部,并使用零作为其虚部。
注解
运算符的 Implicit 重载定义类型,编译器可以从中自动转换 Complex 对象,而无需在 C#) 中 (显式强制转换运算符或调用 Visual Basic) 中 (转换函数。 它们正在扩大不涉及数据丢失且不引发 的 OverflowException转换。
此重载允许编译器处理从 Double 值到复数的转换,如以下示例所示。 请注意,转换的结果是一个复数,其实际部分等于值, Double 其虚部分等于零。
double doubleValue = 1.032e-16;
System.Numerics.Complex c1 = doubleValue;
Console.WriteLine(c1);
// The example displays the following output:
// (1.032E-16, 0)
let doubleValue = 1.032e-16
let c1: System.Numerics.Complex = doubleValue
printfn $"{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)
适用于
Implicit(Int32 to Complex)
- Source:
- Complex.cs
- Source:
- Complex.cs
- Source:
- Complex.cs
定义从 32 位带符号整数到复数的隐式转换。
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
参数
- value
- Int32
要转换为复数的值。
返回
一个对象,其中使用 value
参数的值作为其实部,并使用零作为其虚部。
注解
运算符的 Implicit 重载定义类型,编译器可以从中自动转换 Complex 对象,而无需在 C#) 中 (显式强制转换运算符或调用 Visual Basic) 中 (转换函数。 它们正在扩大不涉及数据丢失且不引发 的 OverflowException转换。
此重载允许编译器处理从有符号 32 位整数到复数的转换,如以下示例所示。 请注意,转换的结果是一个复数,其实际部分等于有符号 32 位整数,其虚部分等于零。
int intValue = 1034217;
System.Numerics.Complex c1 = intValue;
Console.WriteLine(c1);
// The example displays the following output:
// (1034217, 0)
let intValue = 1034217
let c1: System.Numerics.Complex = intValue
printfn $"{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)
适用于
Implicit(Int16 to Complex)
- Source:
- Complex.cs
- Source:
- Complex.cs
- Source:
- Complex.cs
定义从 16 位带符号整数到复数的隐式转换。
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
参数
- value
- Int16
要转换为复数的值。
返回
一个对象,其中使用 value
参数的值作为其实部,并使用零作为其虚部。
注解
运算符的 Implicit 重载定义类型,编译器可以从中自动转换 Complex 对象,而无需在 C# ) 中 (显式强制转换运算符或调用 Visual Basic) 中 (转换函数。 它们正在扩大不涉及数据丢失且不引发 的 OverflowException转换。
此重载允许编译器处理从有符号 16 位整数到复数的转换,如以下示例所示。 请注意,转换的结果是一个复数,其实部分等于有符号 16 位整数,其虚部分等于零。
short shortValue = 16024;
System.Numerics.Complex c1 = shortValue;
Console.WriteLine(c1);
// The example displays the following output:
// (16024, 0)
let shortValue = 16024
let c1: System.Numerics.Complex = shortValue
printfn $"{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)
适用于
Implicit(Half to Complex)
- Source:
- Complex.cs
- Source:
- Complex.cs
- Source:
- Complex.cs
将值隐式转换为 Half 双精度复数。
public:
static operator System::Numerics::Complex(Half value);
public static implicit operator System.Numerics.Complex (Half value);
static member op_Implicit : Half -> System.Numerics.Complex
Public Shared Widening Operator CType (value As Half) As Complex
参数
- value
- Half
要转换的值。
返回
value
转换为双精度复数。
适用于
Implicit(Int64 to Complex)
- Source:
- Complex.cs
- Source:
- Complex.cs
- Source:
- Complex.cs
定义从 64 位带符号整数到复数的隐式转换。
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
参数
- value
- Int64
要转换为复数的值。
返回
一个对象,其中使用 value
参数的值作为其实部,并使用零作为其虚部。
注解
运算符的 Implicit 重载定义类型,编译器可以从中自动转换 Complex 对象,而无需在 C# ) 中 (显式强制转换运算符或调用 Visual Basic) 中 (转换函数。 它们正在扩大不涉及数据丢失且不引发 的 OverflowException转换。
此重载允许编译器处理从有符号 64 位整数到复数的转换,如以下示例所示。 请注意,转换的结果是一个复数,其实部分等于有符号 64 位整数,其虚部分等于零。
long longValue = 951034217;
System.Numerics.Complex c1 = longValue;
Console.WriteLine(c1);
// The example displays the following output:
// (951034217, 0)
let longValue = 951034217
let c1: System.Numerics.Complex = longValue
printfn $"{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)
适用于
Implicit(Char to Complex)
- Source:
- Complex.cs
- Source:
- Complex.cs
- Source:
- Complex.cs
将值隐式转换为 Char 双精度复数。
public:
static operator System::Numerics::Complex(char value);
public static implicit operator System.Numerics.Complex (char value);
static member op_Implicit : char -> System.Numerics.Complex
Public Shared Widening Operator CType (value As Char) As Complex
参数
- value
- Char
要转换的值。
返回
value
转换为双精度复数。
适用于
Implicit(Byte to Complex)
- Source:
- Complex.cs
- Source:
- Complex.cs
- Source:
- Complex.cs
定义从无符号字节到复数的隐式转换。
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
参数
- value
- Byte
要转换为复数的值。
返回
一个对象,其中使用 value
参数的值作为其实部,并使用零作为其虚部。
注解
运算符的 Implicit 重载定义类型,编译器可以从中自动转换 Complex 对象,而无需在 C# ) 中 (显式强制转换运算符或调用 Visual Basic) 中 (转换函数。 它们正在扩大不涉及数据丢失且不引发 的 OverflowException转换。
此重载允许编译器处理从 Byte 值到复数的转换,如以下示例所示。 请注意,转换的结果是一个复数,其实部分等于 Byte 值,其虚部分等于零。
byte byteValue = 122;
System.Numerics.Complex c1 = byteValue;
Console.WriteLine(c1);
// The example displays the following output:
// (122, 0)
let byteValue = 122
let c1: System.Numerics.Complex = byteValue
printfn $"{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)