2 instantiations of LogicalThread
System.Activities (2)
System\Activities\Debugger\StateManager.cs (2)
146this.threads[i] = new LogicalThread(i, threadName, this); 156this.threads.Add(new LogicalThread(threadId, threadName, this));
4 references to LogicalThread
System.Activities (4)
System\Activities\Debugger\StateManager.cs (4)
42List<LogicalThread> threads; 65this.threads = new List<LogicalThread>(); 267foreach (LogicalThread logicalThread in this.threads) 284LogicalThread thread = this.threads[threadIndex];