Complex.Implicit 運算子
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
定義 Complex 物件與另一個型別之間的隱含轉換。
多載
Implicit(SByte to Complex) |
定義從帶正負號的位元組到複數的隱含轉換。 此應用程式開發介面不符合 CLS 標準。 |
Implicit(UIntPtr to Complex) |
隱含地將值轉換成 UIntPtr 雙精確度複數。 |
Implicit(UInt64 to Complex) |
定義從 64 位元不帶正負號整數到複數的隱含轉換。 此應用程式開發介面不符合 CLS 標準。 |
Implicit(UInt32 to Complex) |
定義從 32 位元不帶正負號整數到複數的隱含轉換。 此應用程式開發介面不符合 CLS 標準。 |
Implicit(UInt16 to Complex) |
定義從 16 位元不帶正負號整數到複數的隱含轉換。 此應用程式開發介面不符合 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)
- 來源:
- Complex.cs
- 來源:
- Complex.cs
- 來源:
- Complex.cs
重要
此 API 不符合 CLS 規範。
定義從帶正負號的位元組到複數的隱含轉換。
此應用程式開發介面不符合 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 載會定義編譯程式可以在 C# () 中自動轉換物件的類型,或呼叫 Visual Basic) 中的轉換函式 (的情況下,自動轉換 Complex 物件。 它們延伸的轉換不會牽涉到資料遺失,而且不會擲回 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)
- 來源:
- Complex.cs
- 來源:
- Complex.cs
- 來源:
- 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)
- 來源:
- Complex.cs
- 來源:
- Complex.cs
- 來源:
- Complex.cs
重要
此 API 不符合 CLS 規範。
定義從 64 位元不帶正負號整數到複數的隱含轉換。
此應用程式開發介面不符合 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 載會定義編譯程式可以在 C# () 中自動轉換物件的類型,或呼叫 Visual Basic) 中的轉換函式 (的情況下,自動轉換 Complex 物件。 它們延伸的轉換不會牽涉到資料遺失,而且不會擲回 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)
- 來源:
- Complex.cs
- 來源:
- Complex.cs
- 來源:
- Complex.cs
重要
此 API 不符合 CLS 規範。
定義從 32 位元不帶正負號整數到複數的隱含轉換。
此應用程式開發介面不符合 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 載會定義編譯程式可以在 C# () 中自動轉換物件的類型,或呼叫 Visual Basic) 中的轉換函式 (的情況下,自動轉換 Complex 物件。 它們延伸的轉換不會牽涉到資料遺失,而且不會擲回 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)
- 來源:
- Complex.cs
- 來源:
- Complex.cs
- 來源:
- Complex.cs
重要
此 API 不符合 CLS 規範。
定義從 16 位元不帶正負號整數到複數的隱含轉換。
此應用程式開發介面不符合 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 載會定義編譯程式可以在 C# () 中自動轉換物件的類型,或呼叫 Visual Basic) 中的轉換函式 (的情況下,自動轉換 Complex 物件。 它們延伸的轉換不會牽涉到資料遺失,而且不會擲回 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)
- 來源:
- Complex.cs
- 來源:
- Complex.cs
- 來源:
- 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 載會定義編譯程式可以在 C# () 中自動轉換物件的類型,或呼叫 Visual Basic) 中的轉換函式 (的情況下,自動轉換 Complex 物件。 它們延伸的轉換不會牽涉到資料遺失,而且不會擲回 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)
- 來源:
- Complex.cs
- 來源:
- Complex.cs
- 來源:
- 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)
- 來源:
- Complex.cs
- 來源:
- Complex.cs
- 來源:
- 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 載會定義編譯程式可以在 C# () 中自動轉換物件的類型,或呼叫 Visual Basic) 中的轉換函式 (的情況下,自動轉換 Complex 物件。 它們延伸的轉換不會牽涉到資料遺失,而且不會擲回 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)
- 來源:
- Complex.cs
- 來源:
- Complex.cs
- 來源:
- 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 載會定義編譯程式可以在 C# () 中自動轉換物件的類型,或呼叫 Visual Basic) 中的轉換函式 (的情況下,自動轉換 Complex 物件。 它們延伸的轉換不會牽涉到資料遺失,而且不會擲回 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)
- 來源:
- Complex.cs
- 來源:
- Complex.cs
- 來源:
- 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 載會定義編譯程式可以在 C# () 中自動轉換物件的類型,或在 Visual Basic) 中呼叫轉換函式 (時,自動轉換 Complex 物件。 它們會擴大不會涉及數據遺失且不會擲回的 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)
- 來源:
- Complex.cs
- 來源:
- Complex.cs
- 來源:
- 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)
- 來源:
- Complex.cs
- 來源:
- Complex.cs
- 來源:
- 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 載會定義編譯程式可以在 C# () 中自動轉換物件的類型,或在 Visual Basic) 中呼叫轉換函式 (時,自動轉換 Complex 物件。 它們會擴大不會涉及數據遺失且不會擲回的 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)
- 來源:
- Complex.cs
- 來源:
- Complex.cs
- 來源:
- 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)
- 來源:
- Complex.cs
- 來源:
- Complex.cs
- 來源:
- 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 載會定義編譯程式可以在 C# () 中自動轉換物件的類型,或在 Visual Basic) 中呼叫轉換函式 (時,自動轉換 Complex 物件。 它們會擴大不會涉及數據遺失且不會擲回的 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)