| 1 | Cobra runs on top of .NET and Mono. Also it generates the same kinds of classes, methods and statements that C# and VB use, so you can leverage tools like debuggers and profilers. |
| 2 | |
| 3 | Debugging programs include: |
| 4 | |
| 5 | * DbgCLR.exe |
| 6 | * Mdbg.exe |
| 7 | * Cordbg.exe |
| 8 | |
| 9 | This blog post gives some useful information on debugging .NET programs sans Visual Studio: |
| 10 | |
| 11 | * http://blog.slickedit.com/2007/11/c-with-slickedit-no-visual-studio-required/ |
| 12 | |
| 13 | You might also [wiki:DebuggingWithAnIDE use an IDE] on your executable such as VisualStudio, MonoDevelop or SharpDevelop. |
| 14 | |
| 15 | See also: DebuggingTopics |