SyntaxList<TNode>.InsertRange(Int32, IEnumerable<TNode>) Method

Definition

Creates a new list with the specified nodes inserted at the index.

public:
 Microsoft::CodeAnalysis::SyntaxList<TNode> InsertRange(int index, System::Collections::Generic::IEnumerable<TNode> ^ nodes);
public Microsoft.CodeAnalysis.SyntaxList<TNode> InsertRange (int index, System.Collections.Generic.IEnumerable<TNode> nodes);
member this.InsertRange : int * seq<'Node (requires 'Node :> Microsoft.CodeAnalysis.SyntaxNode)> -> Microsoft.CodeAnalysis.SyntaxList<'Node (requires 'Node :> Microsoft.CodeAnalysis.SyntaxNode)>
Public Function InsertRange (index As Integer, nodes As IEnumerable(Of TNode)) As SyntaxList(Of TNode)

Parameters

index
Int32

The index to insert at.

nodes
IEnumerable<TNode>

The nodes to insert.

Returns

Applies to