C# – 跳转到debugging模式时跳过某个方法的属性

是否有一个属性,我可以使用一个方法,所以当在debugging模式下通过一些代码时,debugging器停留在方法的外部?

[DebuggerStepThrough] 

( linky )

不要忘记添加:

 using System.Diagnostics; 

VB.NET中写成<DebuggerStepThrough()> _ js

要使用它只是放在方法的顶部,如:

 <DebuggerStepThrough()> _ Private Sub form_Paint(sender As Object, e As PaintEventArgs) Handles form.Paint ' Picasso End Sub