Posts by Luan Pablo Franco • 1 point
1 post
-
0
votes2
answers634
viewsA: Start multiple threads in a repeat command
List<Thread> lst = new List<Thread>(); for (int i = 0; i < 30; i++) { lst.Add(new Thread(MetodoVoid)); } lst.ForEach(t => t.Start());