SyntaxNodeOrTokenList.InsertRange Method

Definition

Creates a new SyntaxNodeOrTokenList with the specified nodes or tokens inserted at the index.

public:
 Microsoft::CodeAnalysis::SyntaxNodeOrTokenList InsertRange(int index, System::Collections::Generic::IEnumerable<Microsoft::CodeAnalysis::SyntaxNodeOrToken> ^ nodesAndTokens);
public Microsoft.CodeAnalysis.SyntaxNodeOrTokenList InsertRange (int index, System.Collections.Generic.IEnumerable<Microsoft.CodeAnalysis.SyntaxNodeOrToken> nodesAndTokens);
member this.InsertRange : int * seq<Microsoft.CodeAnalysis.SyntaxNodeOrToken> -> Microsoft.CodeAnalysis.SyntaxNodeOrTokenList
Public Function InsertRange (index As Integer, nodesAndTokens As IEnumerable(Of SyntaxNodeOrToken)) As SyntaxNodeOrTokenList

Parameters

index
Int32

The index to insert at.

nodesAndTokens
IEnumerable<SyntaxNodeOrToken>

The nodes or tokens to insert.

Returns

Applies to