Support.Eqv 메서드

정의

두 식에 대해 논리적 동등성을 수행합니다.

오버로드

Name Description
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

비교할 A Boolean 입니다.

b
Boolean

비교할 A Boolean 입니다.

반품

두 식이 같으면 이고, 그렇지 않으면 .

특성

설명

두 식 중 Null하나가 있으면 결과도 Null됩니다. 두 식이 모두 없는 경우 Null결과는 다음 표에 따라 결정됩니다.

expression1이 And expression2 is 결과는 다음과 입니다.
true true true
true false false
false true false
false false true

Visual Basic Eqv 연산자는 더 이상 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

비교할 A Byte 입니다.

b
Byte

비교할 A Byte 입니다.

반품

비트 비교 결과를 포함하는 A Byte 입니다.

특성

설명

연산자는 Eqv 두 숫자 식에서 동일한 위치의 비트 비교를 수행하고 다음 표에 따라 해당 비트를 설정합니다.

expression1의 비트가 및 expression2의 비트는 결과는 다음과 입니다.
0 0 1
0 1 0
1 0 0
1 1 1

Visual Basic Eqv 연산자는 더 이상 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

비교할 A Int16 입니다.

b
Int16

비교할 A Int16 입니다.

반품

비교 결과를 포함하는 A Int16 입니다.

특성

설명

Visual Basic Eqv 연산자는 더 이상 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

비교할 A Int32 입니다.

b
Int32

비교할 A Int32 입니다.

반품

비교 결과를 포함하는 A Int32 입니다.

특성

설명

Visual Basic Eqv 연산자는 더 이상 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

비교할 A Int64 입니다.

b
Int64

비교할 A Int64 입니다.

반품

비교 결과를 포함하는 A Int64 입니다.

특성

설명

Visual Basic Eqv 연산자는 더 이상 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

비교할 A Object 입니다.

b
Object

비교할 A Object 입니다.

반품

비교 결과를 포함하는 A Object 입니다.

특성

설명

Visual Basic Eqv 연산자는 더 이상 Visual Basic 언어의 일부가 아닙니다. 비트 평가의 경우 NotXOr 연산자를 사용합니다.

메모

Microsoft.VisualBasic.Compatibility.VB6 네임스페이스의 함수 및 개체는 Visual Basic 6.0에서 Visual Basic 2008로 업그레이드하는 도구에서 사용할 수 있도록 제공됩니다. 대부분의 경우 이러한 함수와 개체는 .NET Framework의 다른 네임스페이스에서 찾을 수 있는 기능을 복제합니다. Visual Basic 6.0 코드 모델이 .NET Framework 구현과 크게 다른 경우에만 필요합니다.

추가 정보

적용 대상