共用方式為


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>

要插入的標記。

傳回

適用於