14.9.8 Delegate equality operators

来源:互联网 发布:淘宝卖茶叶图片大全 编辑:程序博客网 时间:2024/06/15 17:13
Every delegate type implicitly provides the following predefined comparison
operators: :
bool operator ==(System.Delegate x, System.Delegate y);
bool operator !=(System.Delegate x, System.Delegate y);
Two delegate instances are considered equal as follows:
?If either of the delegate instances is null, they are equal if and only
if both are null.
C# LANGUAGE SPECIFICATION
168
?If either of the delegate instances has an invocation list (?2.1)
containing one entry, they are equal if
and only if the other also has an invocation list containing one entry, and
either:
?Both refer to the same static method, or
?Both refer to the same non-static method on the same target object.
?If either of the delegate instances has an invocation list containing two
or more entries, those instances
are equal if and only if their invocation lists are the same length, and
each entry in one?s invocation list
is equal to the corresponding entry, in order, in the other?s invocation
list.
Delegates of different types can be considered equal by the above
definition, as long as they have the same
return type and parameter types.
原创粉丝点击