Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
operator==()
static
bool
System.Reflection.Assembly.operator==
(
Assembly
?
left
,
Assembly
?
right
)
inline
static
inherited
Definition at line
445
of file
Assembly.cs
.
446
{
447
if
((
object
)right ==
null
)
448
{
449
if
((
object
)left !=
null
)
450
{
451
return
false
;
452
}
453
return
true
;
454
}
455
if
((
object
)left == right)
456
{
457
return
true
;
458
}
459
return
left?.Equals(right) ??
false
;
460
}
References
System.Reflection.Assembly.Equals()
.
System
Reflection
Emit
InternalAssemblyBuilder
Generated by
1.10.0