I\'m trying to build a command-line tool in C# with VS2010.
My question is: how do I debug this, like I would a winforms. With winforms, I can step through the code,
You just need to add a breakpoint to the first line of the main function (you can do this by clicking on the line in the Visual Studio editor and hitting F9) and hit F5 to start a debug session.