Guest User

Untitled

a guest
Nov 21st, 2017
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. //dummy values
  2. int t = 2;
  3. int[] list = new int[t] {1,2}
  4. int[] sd = new int[t+1] {1,2,3}
  5.  
  6.  
  7.  
  8. for (int i = 0; i < t; i++)
  9. {
  10. list[i] = new Thread(() => func(sd[i], sd[i+1]));
  11. list[i].Start();
  12. }
Add Comment
Please, Sign In to add comment