111,096
社区成员




this.Text = "0";
this.Load += (sender, e) =>
{
ThreadPool.QueueUserWorkItem(obj =>
{
for (int i = 0; i < 10000; i++)
{
new Thread(new ThreadStart(() =>
{
this.Invoke((Action)(() =>
{
this.Text = (int.Parse(this.Text) + 1).ToString();
}));
while (true)
{
Thread.Sleep(0);
}
})).Start();
}
});
};