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 511 of file Delegate.cs.

512 {
513 if ((object)d2 == null)
514 {
515 if ((object)d1 != null)
516 {
517 return true;
518 }
519 return false;
520 }
521 if ((object)d2 != d1)
522 {
523 return !d2.Equals(d1);
524 }
525 return false;
526 }

References System.Runtime.Serialization.Dictionary.