SeparatedSyntaxList<TNode>.InsertRange Method
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.
Creates a new list with the specified nodes inserted at the index.
public:
Microsoft::CodeAnalysis::SeparatedSyntaxList<TNode> InsertRange(int index, System::Collections::Generic::IEnumerable<TNode> ^ nodes);
public Microsoft.CodeAnalysis.SeparatedSyntaxList<TNode> InsertRange (int index, System.Collections.Generic.IEnumerable<TNode> nodes);
member this.InsertRange : int * seq<'Node (requires 'Node :> Microsoft.CodeAnalysis.SyntaxNode)> -> Microsoft.CodeAnalysis.SeparatedSyntaxList<'Node (requires 'Node :> Microsoft.CodeAnalysis.SyntaxNode)>
Public Function InsertRange (index As Integer, nodes As IEnumerable(Of TNode)) As SeparatedSyntaxList(Of TNode)
Parameters
- index
- Int32
The index to insert at.
- nodes
- IEnumerable<TNode>
The nodes to insert.
Returns
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.