Archive

Posts Tagged ‘Debugger’

Navigation – Step Into Member

November 29th, 2010 2 comments

The Step Into Member navigation feature is used in Debug mode only. It allows you to skip unnecessary members while debugging and drill down into the member you choose.

Consider that you are debugging some source code and the current statement has numerous method calls and property references:

IncreaseSalary(FindPersonById(GetPersonId(LastName, FirstName, Age)), Salary)

Read more…

DXCore Services – Debugger

October 6th, 2010 Comments off

The Debugger service provides access to the Visual Studio debugger and its current mode properties.

Methods:

Name

Description

Break Causes the current process to pause its execution. This method waits for the debugger to enter break mode before returning.
Break(Boolean) Causes the current process to pause its execution. Takes a boolean parameter which specifies whether this method should wait for the debugger to enter break mode before returning or return immediately.
DetachAll Detaches the debugger from all attached programs.

Read more…