CodeLabeledStatement Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the CodeLabeledStatement class.
Overloads
CodeLabeledStatement() |
Initializes a new instance of the CodeLabeledStatement class. |
CodeLabeledStatement(String) |
Initializes a new instance of the CodeLabeledStatement class using the specified label name. |
CodeLabeledStatement(String, CodeStatement) |
Initializes a new instance of the CodeLabeledStatement class using the specified label name and statement. |
CodeLabeledStatement()
- Source:
- CodeLabeledStatement.cs
- Source:
- CodeLabeledStatement.cs
- Source:
- CodeLabeledStatement.cs
- Source:
- CodeLabeledStatement.cs
Initializes a new instance of the CodeLabeledStatement class.
public:
CodeLabeledStatement();
public CodeLabeledStatement ();
Public Sub New ()
Applies to
CodeLabeledStatement(String)
- Source:
- CodeLabeledStatement.cs
- Source:
- CodeLabeledStatement.cs
- Source:
- CodeLabeledStatement.cs
- Source:
- CodeLabeledStatement.cs
Initializes a new instance of the CodeLabeledStatement class using the specified label name.
public:
CodeLabeledStatement(System::String ^ label);
public CodeLabeledStatement (string label);
new System.CodeDom.CodeLabeledStatement : string -> System.CodeDom.CodeLabeledStatement
Public Sub New (label As String)
Parameters
- label
- String
The name of the label.
Applies to
CodeLabeledStatement(String, CodeStatement)
- Source:
- CodeLabeledStatement.cs
- Source:
- CodeLabeledStatement.cs
- Source:
- CodeLabeledStatement.cs
- Source:
- CodeLabeledStatement.cs
Initializes a new instance of the CodeLabeledStatement class using the specified label name and statement.
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)
Parameters
- label
- String
The name of the label.
- statement
- CodeStatement
The CodeStatement to associate with the label.