CodeGotoStatement Constructors

Definition

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.

See also

Applies to