CodeGotoStatement 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 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
继续程序执行的位置处的标签名称。
例外
Label
为 null
。