Exemple #1
0
 private void ThreadStartAndJoin(TMThread thread)
 {
     ThreadStart(thread);
     ThreadJoin(thread);
 }
Exemple #2
0
 private void ThreadStart(TMThread thread) => thread.Start();
Exemple #3
0
 private void ThreadJoin(TMThread thread) => thread.Join();
Exemple #4
0
 public void AddThread(TMThread thread, string threadName) => threads.Add(threadName + Guid.NewGuid().ToString(), thread);