Share via


NextStatementSyntax.Update Method

Definition

Returns a copy of this with the specified changes. Returns this instance if there are no actual changes.

public:
 Microsoft::CodeAnalysis::VisualBasic::Syntax::NextStatementSyntax ^ Update(Microsoft::CodeAnalysis::SyntaxToken nextKeyword, Microsoft::CodeAnalysis::SeparatedSyntaxList<Microsoft::CodeAnalysis::VisualBasic::Syntax::ExpressionSyntax ^> controlVariables);
public Microsoft.CodeAnalysis.VisualBasic.Syntax.NextStatementSyntax Update (Microsoft.CodeAnalysis.SyntaxToken nextKeyword, Microsoft.CodeAnalysis.SeparatedSyntaxList<Microsoft.CodeAnalysis.VisualBasic.Syntax.ExpressionSyntax> controlVariables);
member this.Update : Microsoft.CodeAnalysis.SyntaxToken * Microsoft.CodeAnalysis.SeparatedSyntaxList<Microsoft.CodeAnalysis.VisualBasic.Syntax.ExpressionSyntax> -> Microsoft.CodeAnalysis.VisualBasic.Syntax.NextStatementSyntax
Public Function Update (nextKeyword As SyntaxToken, controlVariables As SeparatedSyntaxList(Of ExpressionSyntax)) As NextStatementSyntax

Parameters

nextKeyword
SyntaxToken

The value for the NextKeyword property.

controlVariables
SeparatedSyntaxList<ExpressionSyntax>

The value for the ControlVariables property.

Returns

Applies to