SeparatedSyntaxList<TNode>.AddRange(IEnumerable<TNode>) 方法

定义

创建一个新列表,其中包含添加到末尾的指定节点。

public:
 Microsoft::CodeAnalysis::SeparatedSyntaxList<TNode> AddRange(System::Collections::Generic::IEnumerable<TNode> ^ nodes);
public Microsoft.CodeAnalysis.SeparatedSyntaxList<TNode> AddRange (System.Collections.Generic.IEnumerable<TNode> nodes);
member this.AddRange : seq<'Node (requires 'Node :> Microsoft.CodeAnalysis.SyntaxNode)> -> Microsoft.CodeAnalysis.SeparatedSyntaxList<'Node (requires 'Node :> Microsoft.CodeAnalysis.SyntaxNode)>
Public Function AddRange (nodes As IEnumerable(Of TNode)) As SeparatedSyntaxList(Of TNode)

参数

nodes
IEnumerable<TNode>

要添加的节点。

返回

适用于