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 )
inlinestaticinherited

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 }

References System.Runtime.Serialization.Dictionary.