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

◆ operator==() [1/2]

static bool System.Reflection.EventInfo.operator== ( EventInfo? left,
EventInfo? right )
inlinestaticinherited

Definition at line 115 of file EventInfo.cs.

116 {
117 if ((object)right == null)
118 {
119 if ((object)left != null)
120 {
121 return false;
122 }
123 return true;
124 }
125 if ((object)left == right)
126 {
127 return true;
128 }
129 return left?.Equals(right) ?? false;
130 }

References System.Reflection.EventInfo.Equals().