Time.ticks

Property. Retrieves the number of ticks for this Time. This value can be used to construct another Time struct by writing:

long ticks = myTime.ticks;
Time copyOfMyTime = Time(ticks);
struct Time
@property const
long
ticks
()

Return Value

Type: long

A long represented by the time of this instance.

Meta