Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
Equals< T >()
static
bool
System.Nullable
<
T
>.
Equals
<
T
>
(
T
?
n1
,
T
?
n2
)
inline
static
Type Constraints
T
:
struct
Definition at line
122
of file
Nullable.cs
.
122
:
struct
123
{
124
if
(
n1
.HasValue)
125
{
126
if
(
n2
.HasValue)
127
{
128
return
EqualityComparer<T>
.Default.Equals(
n1
.value,
n2
.value);
129
}
130
return
false
;
131
}
132
if
(
n2
.HasValue)
133
{
134
return
false
;
135
}
136
return
true
;
137
}
System.Collections.Generic.Dictionary
Definition
Dictionary.cs:14
System
Nullable
Generated by
1.10.0