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

◆ TimeOnly() [4/5]

System.TimeOnly.TimeOnly ( long ticks)
inline

Definition at line 46 of file TimeOnly.cs.

47 {
48 if ((ulong)ticks > 863999999999uL)
49 {
50 throw new ArgumentOutOfRangeException("ticks", SR.ArgumentOutOfRange_TimeOnlyBadTicks);
51 }
52 _ticks = ticks;
53 }
readonly long _ticks
Definition TimeOnly.cs:9

References System.TimeOnly._ticks, and System.SR.ArgumentOutOfRange_TimeOnlyBadTicks.