PDA

View Full Version : Debug .Net and Powerbuilder programs?


wincor
09-15-2004, 09:02 AM
Hi!

Is there any way to debug .NET or Powerbuilder applications?
Thanks in advance.

focht
09-15-2004, 02:14 PM
Hi,

ollydbg doesnt understand managed code (.NET) nor can debug it. You have to refer to other debuggers, like:

VS.NET 2002/2003/2005 integrate managed code debuggers(commercial)
Borland C# Builder and Delphi 8 integrate managed code debuggers (commercial?)
.NET SDK contains one: CLR debugger (free download)

You can build a debugger which understands managed code by using .NET debugger APIs (sample (http://www.microsoft.com/downloads/details.aspx?familyid=38449a42-6b7a-4e28-80ce-c55645ab1310&displaylang=en)

Regards

wincor
09-16-2004, 01:49 AM
Thank you for your reply.

I've found ILDASM.EXE in VS.NET, and it seems to be a useful
debugger tool.