Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ operator-() [2/3]

static TimeSpan System.TimeOnly.operator- ( TimeOnly t1,
TimeOnly t2 )
inlinestatic

Definition at line 161 of file TimeOnly.cs.

162 {
163 return new TimeSpan((t1._ticks - t2._ticks + 864000000000L) % 864000000000L);
164 }

References System.TimeOnly._ticks, and System.L.