SyntaxNodeOrTokenList.InsertRange 方法

定义

使用在索引中插入的指定节点或令牌创建一个新 SyntaxNodeOrTokenList 节点。

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

参数

index
Int32

要插入到的索引位置。

nodesAndTokens
IEnumerable<SyntaxNodeOrToken>

要插入的节点或令牌。

返回

适用于