When you build a project in Visual Studio, the Output Window outputs the status of the build process, which included errors and warnings. Double clicking those lines will open up the file containing that error/warning in the editor.
Now, is it possible to get that functionality with output from Debug.WriteLine, or anything like that? So that when the Debug window outputs for example
Buffering: 13:03:20 to 13:03:21
I would be able to double click it and be taken to BufferClass.cs, line 45, since that was the location of the Debug.WriteLine call.
Is that possible, either through .net libraries, or through a Visual Studio Extension?