InitializeComponent question

  • Thread starter Thread starter Chris Leffer
  • Start date Start date
C

Chris Leffer

Hi.

What is the exact purpose of <System.Diagnostics.DebuggerStepThrough()>
in the InitializeComponent routine? If I delete this attribute the form
continues to run without problems and I can step into it.

Regards,
Chris Leffer
 
* Chris Leffer said:
What is the exact purpose of <System.Diagnostics.DebuggerStepThrough()>
in the InitializeComponent routine? If I delete this attribute the form
continues to run without problems and I can step into it.

When starting debugging (stepping through code) the debugger won't step
through these lines of code.
 
Back
Top