Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ operator==() [2/2]

static bool System.MulticastDelegate.operator== ( MulticastDelegate? d1,
MulticastDelegate? d2 )
inlinestatic

Definition at line 377 of file MulticastDelegate.cs.

378 {
379 if ((object)d2 == null)
380 {
381 if ((object)d1 != null)
382 {
383 return false;
384 }
385 return true;
386 }
387 if ((object)d2 != d1)
388 {
389 return d2.Equals(d1);
390 }
391 return true;
392 }

References System.Runtime.Serialization.Dictionary.