Code
public void Main() {
Thread[] threads = new Thread[100];
for(int i = 0; i < threads.Length; i++) {
threads[i] = new Thread(new ThreadStart(TestThread));
threads[i].Start();
}
}
private void TestThread() {
//Invoke mothods tested here
//..
}
看不出有什么不妥。