Sdílet prostřednictvím


CodeLabeledStatement Konstruktory

Definice

Inicializuje novou instanci CodeLabeledStatement třídy.

Přetížení

CodeLabeledStatement()

Inicializuje novou instanci CodeLabeledStatement třídy.

CodeLabeledStatement(String)

Inicializuje novou instanci třídy CodeLabeledStatement pomocí zadaného názvu popisku.

CodeLabeledStatement(String, CodeStatement)

Inicializuje novou instanci CodeLabeledStatement třídy pomocí zadaného názvu popisku a příkazu.

CodeLabeledStatement()

Zdroj:
CodeLabeledStatement.cs
Zdroj:
CodeLabeledStatement.cs
Zdroj:
CodeLabeledStatement.cs
Zdroj:
CodeLabeledStatement.cs

Inicializuje novou instanci CodeLabeledStatement třídy.

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

Platí pro

CodeLabeledStatement(String)

Zdroj:
CodeLabeledStatement.cs
Zdroj:
CodeLabeledStatement.cs
Zdroj:
CodeLabeledStatement.cs
Zdroj:
CodeLabeledStatement.cs

Inicializuje novou instanci třídy CodeLabeledStatement pomocí zadaného názvu popisku.

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

Parametry

label
String

Název popisku.

Platí pro

CodeLabeledStatement(String, CodeStatement)

Zdroj:
CodeLabeledStatement.cs
Zdroj:
CodeLabeledStatement.cs
Zdroj:
CodeLabeledStatement.cs
Zdroj:
CodeLabeledStatement.cs

Inicializuje novou instanci CodeLabeledStatement třídy pomocí zadaného názvu popisku a příkazu.

public:
 CodeLabeledStatement(System::String ^ label, System::CodeDom::CodeStatement ^ statement);
public CodeLabeledStatement (string label, System.CodeDom.CodeStatement statement);
new System.CodeDom.CodeLabeledStatement : string * System.CodeDom.CodeStatement -> System.CodeDom.CodeLabeledStatement
Public Sub New (label As String, statement As CodeStatement)

Parametry

label
String

Název popisku.

statement
CodeStatement

CodeStatement, který chcete přidružit k popisku.

Platí pro