List points = new List();
Parallel.For(0, 15000000, i =>
{
points.Add(i);
});
this is my code. The mistake is "An exception of type 'System.ArgumentException' occurred in mscorlib.dll but was not handled in user code" Solutions?
Manas MohapatraPosted Nov 13, 2016, 1:29 PM