CodeGotoStatement 构造函数

定义

初始化 CodeGotoStatement 类的新实例。

重载

CodeGotoStatement()

初始化 CodeGotoStatement 类的新实例。

CodeGotoStatement(String)

使用指定的标签名初始化 CodeGotoStatement 类的新实例。

CodeGotoStatement()

Source:
CodeGotoStatement.cs
Source:
CodeGotoStatement.cs
Source:
CodeGotoStatement.cs

初始化 CodeGotoStatement 类的新实例。

public:
 CodeGotoStatement();
public CodeGotoStatement ();
Public Sub New ()

注解

如果使用此构造函数, Label 则还必须设置 属性以指示继续执行程序时所在的标签的名称。

适用于

CodeGotoStatement(String)

Source:
CodeGotoStatement.cs
Source:
CodeGotoStatement.cs
Source:
CodeGotoStatement.cs

使用指定的标签名初始化 CodeGotoStatement 类的新实例。

public:
 CodeGotoStatement(System::String ^ label);
public CodeGotoStatement (string label);
new System.CodeDom.CodeGotoStatement : string -> System.CodeDom.CodeGotoStatement
Public Sub New (label As String)

参数

label
String

继续程序执行的位置处的标签名称。

例外

Labelnull

另请参阅

适用于