SyntaxTokenList.InsertRange(Int32, IEnumerable<SyntaxToken>) 方法

定义

使用指定标记在索引处插入一个新 SyntaxTokenList 标记。

public:
 Microsoft::CodeAnalysis::SyntaxTokenList InsertRange(int index, System::Collections::Generic::IEnumerable<Microsoft::CodeAnalysis::SyntaxToken> ^ tokens);
public Microsoft.CodeAnalysis.SyntaxTokenList InsertRange (int index, System.Collections.Generic.IEnumerable<Microsoft.CodeAnalysis.SyntaxToken> tokens);
member this.InsertRange : int * seq<Microsoft.CodeAnalysis.SyntaxToken> -> Microsoft.CodeAnalysis.SyntaxTokenList
Public Function InsertRange (index As Integer, tokens As IEnumerable(Of SyntaxToken)) As SyntaxTokenList

参数

index
Int32

要插入新令牌的索引。

tokens
IEnumerable<SyntaxToken>

要插入的标记。

返回

适用于