我是Visual Basic的新手 (对不起,如果我的英语不太好。我不是母语人士。)
为什么我必须在这些标志<内写 System.Diagnostics.DebuggerStepThrough()。 ...> _ ?
该行末尾的下划线有什么作用?
您可以在下面代码的第一行看到它。
<System.Diagnostics.DebuggerStepThrough()> _
Private Sub InitializeComponent()
Me.txtZahl1 = New System.Windows.Forms.Label()
Me.txtZahl2 = New System.Windows.Forms.Label()
Me.SuspendLayout()
答案 0 :(得分:1)
它表示attribute。
它们允许您将声明性信息与您正在创建的类或函数相关联,例如,可以在反射中使用它。
对于您正在使用的属性,它指示调试器逐步执行代码而不是单步执行代码。&#34;,根据MSDN documentation