How can I find the current directory for a .NET application running under the Visual Studio debugger?
Update 1. To be clear: I don\'t want to change
In Visual Studio, under the project's settings in the debug tab, you can set the "Working Directory" if you want.
To determine the current working directory in code or in the immediate window in a breakpoint, try
System.IO.Directory.GetCurrentDirectory()