Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
operator==()
[1/2]
static
bool
System.Delegate.operator==
(
Delegate
?
d1
,
Delegate
?
d2
)
inline
static
inherited
Definition at line
493
of file
Delegate.cs
.
494
{
495
if
((
object
)
d2
==
null
)
496
{
497
if
((
object
)
d1
!=
null
)
498
{
499
return
false
;
500
}
501
return
true
;
502
}
503
if
((
object
)
d2
!=
d1
)
504
{
505
return
d2
.Equals(
d1
);
506
}
507
return
true
;
508
}
System.Runtime.Serialization.CollectionKind.Dictionary
@ Dictionary
References
System.Runtime.Serialization.Dictionary
.
System
MulticastDelegate
Generated by
1.10.0