Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
operator==()
[2/2]
static
bool
System.Reflection.PropertyInfo.operator==
(
PropertyInfo
?
left
,
PropertyInfo
?
right
)
inline
static
inherited
Definition at line
111
of file
PropertyInfo.cs
.
112
{
113
if
((
object
)right ==
null
)
114
{
115
if
((
object
)left !=
null
)
116
{
117
return
false
;
118
}
119
return
true
;
120
}
121
if
((
object
)left == right)
122
{
123
return
true
;
124
}
125
return
left?.Equals(right) ??
false
;
126
}
References
System.Reflection.PropertyInfo.Equals()
.
System
Reflection
Emit
PropertyBuilder
Generated by
1.10.0