SeparatedSyntaxList<TNode>.InsertRange メソッド

定義

指定したノードがインデックスに挿入された新しいリストを作成します。

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)

パラメーター

index
Int32

挿入する位置のインデックス。

nodes
IEnumerable<TNode>

挿入するノード。

戻り値

適用対象