RuntimeTypeHandle.Inequality 연산자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
개체와 RuntimeTypeHandle 구조체가 같지 않은지 여부를 나타냅니다.
오버로드
Inequality(Object, RuntimeTypeHandle) |
개체와 RuntimeTypeHandle 구조체가 같지 않은지 여부를 나타냅니다. |
Inequality(RuntimeTypeHandle, Object) |
RuntimeTypeHandle 구조체가 개체와 같지 않은지 여부를 나타냅니다. |
Inequality(Object, RuntimeTypeHandle)
개체와 RuntimeTypeHandle 구조체가 같지 않은지 여부를 나타냅니다.
public:
static bool operator !=(System::Object ^ left, RuntimeTypeHandle right);
public static bool operator != (object left, RuntimeTypeHandle right);
public static bool operator != (object? left, RuntimeTypeHandle right);
static member op_Inequality : obj * RuntimeTypeHandle -> bool
Public Shared Operator != (left As Object, right As RuntimeTypeHandle) As Boolean
매개 변수
- left
- Object
right
와 비교할 개체입니다.
- right
- RuntimeTypeHandle
left
와 비교할 RuntimeTypeHandle 구조체입니다.
반환
left
가 RuntimeTypeHandle이고 right
와 같지 않으면 true
이고, 그렇지 않으면 false
입니다.
설명
이 연산자를 사용하여 형식 RuntimeTypeHandle 의 두 변수를 비교하면 컴파일 시 모호한 오버로드 확인 오류가 발생합니다. 대신 Equals 메서드를 사용합니다.
이 연산자에 대 한 해당 메서드는 RuntimeTypeHandle.Equals(Object)합니다.
적용 대상
Inequality(RuntimeTypeHandle, Object)
RuntimeTypeHandle 구조체가 개체와 같지 않은지 여부를 나타냅니다.
public:
static bool operator !=(RuntimeTypeHandle left, System::Object ^ right);
public static bool operator != (RuntimeTypeHandle left, object right);
public static bool operator != (RuntimeTypeHandle left, object? right);
static member op_Inequality : RuntimeTypeHandle * obj -> bool
Public Shared Operator != (left As RuntimeTypeHandle, right As Object) As Boolean
매개 변수
- left
- RuntimeTypeHandle
right
와 비교할 RuntimeTypeHandle 구조체입니다.
- right
- Object
left
와 비교할 개체입니다.
반환
right
가 RuntimeTypeHandle 구조체이고 left
와 같지 않으면 true
이고, 그렇지 않으면 false
입니다.
설명
이 연산자를 사용하여 형식 RuntimeTypeHandle 의 두 변수를 비교하면 컴파일 시 모호한 오버로드 확인 오류가 발생합니다. 대신 Equals 메서드를 사용합니다.
이 연산자에 대 한 해당 메서드는 RuntimeTypeHandle.Equals(Object)합니다.