Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
operator==()
[3/3]
static
bool
System.Reflection.MethodInfo.operator==
(
MethodInfo
?
left
,
MethodInfo
?
right
)
inline
static
inherited
Definition at line
79
of file
MethodInfo.cs
.
80
{
81
if
((
object
)right ==
null
)
82
{
83
if
((
object
)left !=
null
)
84
{
85
return
false
;
86
}
87
return
true
;
88
}
89
if
((
object
)left == right)
90
{
91
return
true
;
92
}
93
return
left?.Equals(right) ??
false
;
94
}
References
System.Reflection.MethodInfo.Equals()
.
System
Reflection
Emit
SymbolMethod
Generated by
1.10.0