共用方式為


Support.Eqv 方法

定義

在兩個運算式上執行邏輯等價 (Logical Equivalence)。

多載

Eqv(Boolean, Boolean)
已淘汰.

在兩個 Boolean 運算式上執行邏輯等價。

Eqv(Byte, Byte)
已淘汰.

在兩個 Byte 運算式上執行邏輯等價。

Eqv(Int16, Int16)
已淘汰.

在兩個 Int16 運算式上執行邏輯等價。

Eqv(Int32, Int32)
已淘汰.

在兩個 Int32 運算式上執行邏輯等價。

Eqv(Int64, Int64)
已淘汰.

在兩個 Int64 運算式上執行邏輯等價。

Eqv(Object, Object)
已淘汰.

在兩個 Object 運算式上執行邏輯等價。

Eqv(Boolean, Boolean)

警告

Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes only. http://go.microsoft.com/fwlink/?linkid=160862

在兩個 Boolean 運算式上執行邏輯等價。

public:
 static bool Eqv(bool a, bool b);
public static bool Eqv (bool a, bool b);
[System.Obsolete("Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes only. http://go.microsoft.com/fwlink/?linkid=160862")]
public static bool Eqv (bool a, bool b);
static member Eqv : bool * bool -> bool
[<System.Obsolete("Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes only. http://go.microsoft.com/fwlink/?linkid=160862")>]
static member Eqv : bool * bool -> bool
Public Function Eqv (a As Boolean, b As Boolean) As Boolean

參數

a
Boolean

要比較的 Boolean

b
Boolean

要比較的 Boolean

傳回

如果兩個運算式相等則為 true,否則為 false

屬性

備註

如果任一個運算式Null,結果也是Null。 當兩個運算式是Null,結果根據下表所決定:

如果 expression1 為 和 expression2 為 結果就是
true true true
true false false
false true false
false false true

在 Visual BasicEqv運算子不是 Visual Basic 語言的一部分; 請使用等於 (=) 比較運算子取代Eqv進行邏輯評估。

注意

Microsoft.VisualBasic.Compatibility.VB6 命名空間中的函式和物件都是供這些工具使用,以便從 Visual Basic 6.0 升級至 Visual Basic 2008。 在大多數情況下,這些函式和物件會複製在 .NET Framework 其他命名空間中可以找到的功能。 只有當 Visual Basic 6.0 程式碼模型與 .NET Framework 實作有顯著差異時,才會需要這些函式和物件。

另請參閱

適用於

Eqv(Byte, Byte)

警告

Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes only. http://go.microsoft.com/fwlink/?linkid=160862

在兩個 Byte 運算式上執行邏輯等價。

public:
 static System::Byte Eqv(System::Byte a, System::Byte b);
public static byte Eqv (byte a, byte b);
[System.Obsolete("Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes only. http://go.microsoft.com/fwlink/?linkid=160862")]
public static byte Eqv (byte a, byte b);
static member Eqv : byte * byte -> byte
[<System.Obsolete("Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes only. http://go.microsoft.com/fwlink/?linkid=160862")>]
static member Eqv : byte * byte -> byte
Public Function Eqv (a As Byte, b As Byte) As Byte

參數

a
Byte

要比較的 Byte

b
Byte

要比較的 Byte

傳回

Byte,包含位元 (Bitwise) 元比較的結果。

屬性

備註

Eqv運算子在兩個數值運算式之間執行位元比較相同位置的位元,並設定對應的位元,根據下表:

如果 expression1 的位元 並在 expression2 中的位元 結果就是
0 0 1
0 1 0
1 0 0
1 1 1

在 Visual BasicEqv運算子不再; 位元的評估使用的 Visual Basic 語言的一部分NotXOr運算子。

注意

Microsoft.VisualBasic.Compatibility.VB6 命名空間中的函式和物件都是供這些工具使用,以便從 Visual Basic 6.0 升級至 Visual Basic 2008。 在大多數情況下,這些函式和物件會複製在 .NET Framework 其他命名空間中可以找到的功能。 只有當 Visual Basic 6.0 程式碼模型與 .NET Framework 實作有顯著差異時,才會需要這些函式和物件。

另請參閱

適用於

Eqv(Int16, Int16)

警告

Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes only. http://go.microsoft.com/fwlink/?linkid=160862

在兩個 Int16 運算式上執行邏輯等價。

public:
 static short Eqv(short a, short b);
public static short Eqv (short a, short b);
[System.Obsolete("Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes only. http://go.microsoft.com/fwlink/?linkid=160862")]
public static short Eqv (short a, short b);
static member Eqv : int16 * int16 -> int16
[<System.Obsolete("Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes only. http://go.microsoft.com/fwlink/?linkid=160862")>]
static member Eqv : int16 * int16 -> int16
Public Function Eqv (a As Short, b As Short) As Short

參數

a
Int16

要比較的 Int16

b
Int16

要比較的 Int16

傳回

Int16,包含比較的結果。

屬性

備註

在 Visual BasicEqv運算子不再; 位元的評估使用的 Visual Basic 語言的一部分NotXOr運算子。

注意

Microsoft.VisualBasic.Compatibility.VB6 命名空間中的函式和物件都是供這些工具使用,以便從 Visual Basic 6.0 升級至 Visual Basic 2008。 在大多數情況下,這些函式和物件會複製在 .NET Framework 其他命名空間中可以找到的功能。 只有當 Visual Basic 6.0 程式碼模型與 .NET Framework 實作有顯著差異時,才會需要這些函式和物件。

另請參閱

適用於

Eqv(Int32, Int32)

警告

Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes only. http://go.microsoft.com/fwlink/?linkid=160862

在兩個 Int32 運算式上執行邏輯等價。

public:
 static int Eqv(int a, int b);
public static int Eqv (int a, int b);
[System.Obsolete("Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes only. http://go.microsoft.com/fwlink/?linkid=160862")]
public static int Eqv (int a, int b);
static member Eqv : int * int -> int
[<System.Obsolete("Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes only. http://go.microsoft.com/fwlink/?linkid=160862")>]
static member Eqv : int * int -> int
Public Function Eqv (a As Integer, b As Integer) As Integer

參數

a
Int32

要比較的 Int32

b
Int32

要比較的 Int32

傳回

Int32,包含比較的結果。

屬性

備註

在 Visual BasicEqv運算子不再; 位元的評估使用的 Visual Basic 語言的一部分NotXOr運算子。

注意

Microsoft.VisualBasic.Compatibility.VB6 命名空間中的函式和物件都是供這些工具使用,以便從 Visual Basic 6.0 升級至 Visual Basic 2008。 在大多數情況下,這些函式和物件會複製在 .NET Framework 其他命名空間中可以找到的功能。 只有當 Visual Basic 6.0 程式碼模型與 .NET Framework 實作有顯著差異時,才會需要這些函式和物件。

另請參閱

適用於

Eqv(Int64, Int64)

警告

Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes only. http://go.microsoft.com/fwlink/?linkid=160862

在兩個 Int64 運算式上執行邏輯等價。

public:
 static long Eqv(long a, long b);
public static long Eqv (long a, long b);
[System.Obsolete("Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes only. http://go.microsoft.com/fwlink/?linkid=160862")]
public static long Eqv (long a, long b);
static member Eqv : int64 * int64 -> int64
[<System.Obsolete("Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes only. http://go.microsoft.com/fwlink/?linkid=160862")>]
static member Eqv : int64 * int64 -> int64
Public Function Eqv (a As Long, b As Long) As Long

參數

a
Int64

要比較的 Int64

b
Int64

要比較的 Int64

傳回

Int64,包含比較的結果。

屬性

備註

在 Visual BasicEqv運算子不再; 位元的評估使用的 Visual Basic 語言的一部分NotXOr運算子。

注意

Microsoft.VisualBasic.Compatibility.VB6 命名空間中的函式和物件都是供這些工具使用,以便從 Visual Basic 6.0 升級至 Visual Basic 2008。 在大多數情況下,這些函式和物件會複製在 .NET Framework 其他命名空間中可以找到的功能。 只有當 Visual Basic 6.0 程式碼模型與 .NET Framework 實作有顯著差異時,才會需要這些函式和物件。

另請參閱

適用於

Eqv(Object, Object)

警告

Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes only. http://go.microsoft.com/fwlink/?linkid=160862

在兩個 Object 運算式上執行邏輯等價。

public:
 static System::Object ^ Eqv(System::Object ^ a, System::Object ^ b);
public static object Eqv (object a, object b);
[System.Obsolete("Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes only. http://go.microsoft.com/fwlink/?linkid=160862")]
public static object Eqv (object a, object b);
static member Eqv : obj * obj -> obj
[<System.Obsolete("Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes only. http://go.microsoft.com/fwlink/?linkid=160862")>]
static member Eqv : obj * obj -> obj
Public Function Eqv (a As Object, b As Object) As Object

參數

a
Object

要比較的 Object

b
Object

要比較的 Object

傳回

Object,包含比較的結果。

屬性

備註

在 Visual BasicEqv運算子不再; 位元的評估使用的 Visual Basic 語言的一部分NotXOr運算子。

注意

Microsoft.VisualBasic.Compatibility.VB6 命名空間中的函式和物件都是供這些工具使用,以便從 Visual Basic 6.0 升級至 Visual Basic 2008。 在大多數情況下,這些函式和物件會複製在 .NET Framework 其他命名空間中可以找到的功能。 只有當 Visual Basic 6.0 程式碼模型與 .NET Framework 實作有顯著差異時,才會需要這些函式和物件。

另請參閱

適用於