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

◆ ActiveCount

long System.Threading.Timer.ActiveCount
staticget

Definition at line 14 of file Timer.cs.

15 {
16 get
17 {
18 long num = 0L;
19 TimerQueue[] instances = TimerQueue.Instances;
20 foreach (TimerQueue timerQueue in instances)
21 {
23 {
24 num += timerQueue.ActiveCount;
25 }
26 }
27 return num;
28 }
29 }

Referenced by System.Diagnostics.Tracing.RuntimeEventSource.OnEventCommand().