Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
Equals()
[1/3]
override
bool
System.Double.Equals
(
[NotNullWhen(true)] object?
obj
)
inline
Definition at line
208
of file
Double.cs
.
209
{
210
if
(!(
obj
is
double
num))
211
{
212
return
false
;
213
}
214
if
(num ==
this
)
215
{
216
return
true
;
217
}
218
if
(
IsNaN
(num))
219
{
220
return
IsNaN
(
this
);
221
}
222
return
false
;
223
}
System.ExceptionArgument.obj
@ obj
System.Double.IsNaN
static bool IsNaN(double d)
Definition
Double.cs:90
References
System.Double.IsNaN()
, and
System.obj
.
System
Double
Generated by
1.10.0