111,093
社区成员




Thread th = new Thread((ThreadStart)delegate()
{
test();
});
th.Start();
public void test()
{
int i=0;
while (i<100000)
{
this.Invoke
(
(MethodInvoker)delegate()
{
label1.Text = i.ToString();
}
);
i += 100;
}
}