Wiki

Changes between Initial Version and Version 1 of DebuggingSansVisualStudio

Show
Ignore:
Timestamp:
05/04/10 08:30:32 (15 years ago)
Author:
Chuck
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DebuggingSansVisualStudio

    v1 v1  
     1Cobra 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 
     3Debugging programs include: 
     4 
     5 * DbgCLR.exe 
     6 * Mdbg.exe 
     7 * Cordbg.exe 
     8 
     9This 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 
     13You might also [wiki:DebuggingWithAnIDE use an IDE] on your executable such as VisualStudio, MonoDevelop or SharpDevelop. 
     14 
     15See also: DebuggingTopics