MulticastDelegate.Inequality(MulticastDelegate, MulticastDelegate) 연산자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
두 개의 MulticastDelegate 개체가 같은지 여부를 확인합니다.
public:
static bool operator !=(MulticastDelegate ^ d1, MulticastDelegate ^ d2);
public static bool operator != (MulticastDelegate d1, MulticastDelegate d2);
public static bool operator != (MulticastDelegate? d1, MulticastDelegate? d2);
static member op_Inequality : MulticastDelegate * MulticastDelegate -> bool
Public Shared Operator != (d1 As MulticastDelegate, d2 As MulticastDelegate) As Boolean
매개 변수
왼쪽 피연산자입니다.
오른쪽 피연산자입니다.
반환
d1
및 d2
가 같은 호출 목록을 가지지 않으면 true
이고, 그렇지 않으면 false
입니다.
예외
추상 클래스의 인스턴스를 만들 수 없거나 이 멤버가 런타임에 바인딩 메커니즘을 사용하여 호출되었습니다.
설명
두 대리자는 같지 않고 null
정확히 동일한 형식이고 호출 목록에는 동일한 수의 요소가 포함되며 첫 번째 대리자 호출 목록의 모든 요소는 두 번째 대리자 호출 목록에 있는 해당 요소와 같습니다.
두 호출 목록 요소는 동일한 대상 instance 동일한 instance 메서드를 호출하거나 동일한 정적 메서드를 호출하는 경우 동일합니다.
이 연산자에 대 한 해당 메서드는 MulticastDelegate.Equals(Object)
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET