次の方法で共有


CodeGotoStatement コンストラクター

定義

CodeGotoStatement クラスの新しいインスタンスを初期化します。

オーバーロード

CodeGotoStatement()

CodeGotoStatement クラスの新しいインスタンスを初期化します。

CodeGotoStatement(String)

ラベル名を指定して、CodeGotoStatement クラスの新しいインスタンスを初期化します。

CodeGotoStatement()

ソース:
CodeGotoStatement.cs
ソース:
CodeGotoStatement.cs
ソース:
CodeGotoStatement.cs

CodeGotoStatement クラスの新しいインスタンスを初期化します。

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

注釈

このコンストラクターを使用する場合は、 プロパティを Label 設定して、プログラムの実行を続行するラベルの名前を示す必要もあります。

適用対象

CodeGotoStatement(String)

ソース:
CodeGotoStatement.cs
ソース:
CodeGotoStatement.cs
ソース:
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です。

こちらもご覧ください

適用対象