SyntaxList<TNode>.InsertRange(Int32, IEnumerable<TNode>) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
创建一个新列表,其中包含在索引处插入的指定节点。
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)
参数
- index
- Int32
要插入到的索引位置。
- nodes
- IEnumerable<TNode>
要插入的节点。