Parallel.foreach(list<> , a=>
{
// do some operation
chart1.Series[0].Points.AddXY(x, y);
});
我想为并行调用的每个线程绘制不同的线。有没有办法做到这一点?
Parallel.foreach(list<> , a=>
{
// do some operation
chart1.Series[0].Points.AddXY(x, y);
});
我想为并行调用的每个线程绘制不同的线。有没有办法做到这一点?