CodeGotoStatement 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 CodeGotoStatement class.
Overloads
CodeGotoStatement() |
Initializes a new instance of the CodeGotoStatement class. |
CodeGotoStatement(String) |
Initializes a new instance of the CodeGotoStatement class using the specified label name. |
CodeGotoStatement()
- Source:
- CodeGotoStatement.cs
- Source:
- CodeGotoStatement.cs
- Source:
- CodeGotoStatement.cs
- Source:
- CodeGotoStatement.cs
Initializes a new instance of the CodeGotoStatement class.
public:
CodeGotoStatement();
public CodeGotoStatement ();
Public Sub New ()
Remarks
If you use this constructor you must also set the Label property to indicate the name of the label at which to continue program execution.
Applies to
CodeGotoStatement(String)
- Source:
- CodeGotoStatement.cs
- Source:
- CodeGotoStatement.cs
- Source:
- CodeGotoStatement.cs
- Source:
- CodeGotoStatement.cs
Initializes a new instance of the CodeGotoStatement class using the specified label name.
public:
CodeGotoStatement(System::String ^ label);
public CodeGotoStatement (string label);
new System.CodeDom.CodeGotoStatement : string -> System.CodeDom.CodeGotoStatement
Public Sub New (label As String)
Parameters
- label
- String
The name of the label at which to continue program execution.
Exceptions
Label
is null
.