PDA

View Full Version : debugging a c# mono app



jordilin
November 23rd, 2006, 09:31 AM
I'm learning c# with the mono platform. Now I have a question. How people debug programs in Mono. I haven't seen any debugger. MonoDevelop doesn't ship a debugger yet. In m$ win SharpDevelop and Visual Studio both have debuggers, so you can see what's going on at any moment. How linux guys who program in c# mono debug their applications? is their a way? thanks

jordilin
November 24th, 2006, 10:30 AM
anybody?

engineer
November 24th, 2006, 12:01 PM
i can tell you my method for debugging:

the console output produced by exceptions shows you line numbers.
beside this, i insert console output commands to see the values of my variables. it's no perfect debugger, but in most cases it's enough.