Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
CompareTo()
[4/4]
int System.TimeSpan.CompareTo
(
TimeSpan
value
)
inline
Definition at line
148
of file
TimeSpan.cs
.
149
{
150
long
ticks =
value
._ticks;
151
if
(
_ticks
> ticks)
152
{
153
return
1;
154
}
155
if
(
_ticks
< ticks)
156
{
157
return
-1;
158
}
159
return
0;
160
}
System.ExceptionArgument.value
@ value
System.TimeSpan._ticks
readonly long _ticks
Definition
TimeSpan.cs:27
References
System.TimeSpan._ticks
, and
System.value
.
System
TimeSpan
Generated by
1.10.0