how is the loop invoked? This decides how the printValue Method is called. If you call the loop in 2 parallel Tasks the output would definitly mix up!
To ensure, that the output is always right orderd you have to get the sensitive part of the code "thread safe". Take a look at http://www.albahari.com/threading/part2.aspx for further information about thread synchronization.
Try this to get "thread safe"
public class SomeClass{
private static object lockObject = new object();
public void Foo(){
lock(lockObject){
for (int i = 0; i < 10000; i++)
{
printValue(i);
}
}
}
private void printValue(int value)
{
Console.WriteLine(value);
}
}
Offcourse there are may solutions for thread safty but this should work fine :-)