CodeLabeledStatement Konstruktory
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Inicjuje nowe wystąpienie klasy CodeLabeledStatement.
Przeciążenia
CodeLabeledStatement() |
Inicjuje nowe wystąpienie klasy CodeLabeledStatement. |
CodeLabeledStatement(String) |
Inicjuje CodeLabeledStatement nowe wystąpienie klasy przy użyciu określonej nazwy etykiety. |
CodeLabeledStatement(String, CodeStatement) |
Inicjuje CodeLabeledStatement nowe wystąpienie klasy przy użyciu określonej nazwy etykiety i instrukcji. |
CodeLabeledStatement()
- Źródło:
- CodeLabeledStatement.cs
- Źródło:
- CodeLabeledStatement.cs
- Źródło:
- CodeLabeledStatement.cs
Inicjuje nowe wystąpienie klasy CodeLabeledStatement.
public:
CodeLabeledStatement();
public CodeLabeledStatement ();
Public Sub New ()
Dotyczy
CodeLabeledStatement(String)
- Źródło:
- CodeLabeledStatement.cs
- Źródło:
- CodeLabeledStatement.cs
- Źródło:
- CodeLabeledStatement.cs
Inicjuje CodeLabeledStatement nowe wystąpienie klasy przy użyciu określonej nazwy etykiety.
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
Nazwa etykiety.
Dotyczy
CodeLabeledStatement(String, CodeStatement)
- Źródło:
- CodeLabeledStatement.cs
- Źródło:
- CodeLabeledStatement.cs
- Źródło:
- CodeLabeledStatement.cs
Inicjuje CodeLabeledStatement nowe wystąpienie klasy przy użyciu określonej nazwy etykiety i instrukcji.
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
Nazwa etykiety.
- statement
- CodeStatement
Element do skojarzenia CodeStatement z etykietą.