Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
operator==()
[2/3]
static
bool
System.Reflection.MethodBase.operator==
(
MethodBase
?
left
,
MethodBase
?
right
)
inline
static
inherited
Definition at line
221
of file
MethodBase.cs
.
222
{
223
if
((
object
)right ==
null
)
224
{
225
if
((
object
)left !=
null
)
226
{
227
return
false
;
228
}
229
return
true
;
230
}
231
if
((
object
)left == right)
232
{
233
return
true
;
234
}
235
return
left?.Equals(right) ??
false
;
236
}
References
System.Reflection.MethodBase.Equals()
.
System
Reflection
Emit
SymbolMethod
Generated by
1.10.0