Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
operator==()
static
bool
System.Reflection.Module.operator==
(
Module
?
left
,
Module
?
right
)
inline
static
inherited
Definition at line
322
of file
Module.cs
.
323
{
324
if
((
object
)right ==
null
)
325
{
326
if
((
object
)left !=
null
)
327
{
328
return
false
;
329
}
330
return
true
;
331
}
332
if
((
object
)left == right)
333
{
334
return
true
;
335
}
336
return
left?.Equals(right) ??
false
;
337
}
References
System.Reflection.Module.Equals()
.
System
Reflection
Emit
ModuleBuilder
Generated by
1.10.0