private void button1_Click(object sender, EventArgs e)
{
for (int i = 0; i < 15; i++)
{
Thread nova = new Thread(Method);
nova.Start();
}
listBox1.Items.Add("Some text");
}
private void Method()
{
for (int i = 0; i < 15; i++)
{
Console.WriteLine(i);
}
}
这段代码确实写了:一些文本,然后是数字 111222333 .....我希望它写 111122223333.... 然后最后是一些文本。是否可以使用线程(父线程等待子线程)来做到这一点?还是我必须使用其他东西?