I run through millions of records and sometimes I have to debug using Console.WriteLine to see what is going on.
Console.WriteLine
However, Console.WriteLine
If it is just for debugging purposes you should use Debug.WriteLine instead. This will most likely be a bit faster than using Console.WriteLine.
Example
Debug.WriteLine("There was an error processing the data.");