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 395 of file MulticastDelegate.cs.

396 {
397 if ((object)d2 == null)
398 {
399 if ((object)d1 != null)
400 {
401 return true;
402 }
403 return false;
404 }
405 if ((object)d2 != d1)
406 {
407 return !d2.Equals(d1);
408 }
409 return false;
410 }

References System.Runtime.Serialization.Dictionary.