Computer.Key.Equality 연산자

정의

지정된 객체 키가 두 번째 객체 키와 같은지 결정합니다.

오버로드

Name Description
Equality(Computer+Key, Computer+Key)

지정된 객체 키가 두 번째 객체 키와 같은지 결정합니다.

Equality(Computer+Key, Object)

지정된 객체 키가 객체와 같은지 결정합니다.

Equality(Object, Computer+Key)

지정된 객체가 객체 키와 같은지 여부를 결정합니다.

Equality(Computer+Key, Computer+Key)

지정된 객체 키가 두 번째 객체 키와 같은지 결정합니다.

public:
 static bool operator ==(Microsoft::SqlServer::Management::Utility::Computer::Key ^ leftOperand, Microsoft::SqlServer::Management::Utility::Computer::Key ^ rightOperand);
public static bool operator ==(Microsoft.SqlServer.Management.Utility.Computer.Key leftOperand, Microsoft.SqlServer.Management.Utility.Computer.Key rightOperand);
static member ( = ) : Microsoft.SqlServer.Management.Utility.Computer.Key * Microsoft.SqlServer.Management.Utility.Computer.Key -> bool
Public Shared Operator == (leftOperand As Computer.Key, rightOperand As Computer.Key) As Boolean

매개 변수

leftOperand
Computer.Key

같음을 비교하는 A Computer.Key 입니다.

rightOperand
Computer.Key

평등을 비교할 수 있는 잠깐의 시간 Computer.Key .

반품

Boolean A는 두 피연산자가 같으면 같 true 고, 그렇지 않으면 false입니다.

적용 대상

Equality(Computer+Key, Object)

지정된 객체 키가 객체와 같은지 결정합니다.

public:
 static bool operator ==(Microsoft::SqlServer::Management::Utility::Computer::Key ^ leftOperand, System::Object ^ obj);
public static bool operator ==(Microsoft.SqlServer.Management.Utility.Computer.Key leftOperand, object obj);
static member ( = ) : Microsoft.SqlServer.Management.Utility.Computer.Key * obj -> bool
Public Shared Operator == (leftOperand As Computer.Key, obj As Object) As Boolean

매개 변수

leftOperand
Computer.Key

같음을 비교하는 A Computer.Key 입니다.

obj
Object

같음을 비교하는 A Object 입니다.

반품

Boolean A는 두 피연산자가 같으면 같 true 고, 그렇지 않으면 false입니다.

적용 대상

Equality(Object, Computer+Key)

지정된 객체가 객체 키와 같은지 여부를 결정합니다.

public:
 static bool operator ==(System::Object ^ obj, Microsoft::SqlServer::Management::Utility::Computer::Key ^ rightOperand);
public static bool operator ==(object obj, Microsoft.SqlServer.Management.Utility.Computer.Key rightOperand);
static member ( = ) : obj * Microsoft.SqlServer.Management.Utility.Computer.Key -> bool
Public Shared Operator == (obj As Object, rightOperand As Computer.Key) As Boolean

매개 변수

obj
Object

같음을 비교하는 A Object 입니다.

rightOperand
Computer.Key

같음을 비교하는 A Computer.Key 입니다.

반품

Boolean A는 두 피연산자가 같으면 같 true 고, 그렇지 않으면 false입니다.

적용 대상