共用方式為


SyntaxNodeExtensions.InsertNodesBefore<TRoot> 方法

定義

建立新的節點樹狀結構,其中新的節點會插入指定的節點之前。

public:
generic <typename TRoot>
 where TRoot : Microsoft::CodeAnalysis::SyntaxNode[System::Runtime::CompilerServices::Extension]
 static TRoot InsertNodesBefore(TRoot root, Microsoft::CodeAnalysis::SyntaxNode ^ nodeInList, System::Collections::Generic::IEnumerable<Microsoft::CodeAnalysis::SyntaxNode ^> ^ newNodes);
public static TRoot InsertNodesBefore<TRoot> (this TRoot root, Microsoft.CodeAnalysis.SyntaxNode nodeInList, System.Collections.Generic.IEnumerable<Microsoft.CodeAnalysis.SyntaxNode> newNodes) where TRoot : Microsoft.CodeAnalysis.SyntaxNode;
static member InsertNodesBefore : 'Root * Microsoft.CodeAnalysis.SyntaxNode * seq<Microsoft.CodeAnalysis.SyntaxNode> -> 'Root (requires 'Root :> Microsoft.CodeAnalysis.SyntaxNode)
<Extension()>
Public Function InsertNodesBefore(Of TRoot As SyntaxNode) (root As TRoot, nodeInList As SyntaxNode, newNodes As IEnumerable(Of SyntaxNode)) As TRoot

類型參數

TRoot

根節點的類型。

參數

root
TRoot

節點樹狀結構的根目錄。

nodeInList
SyntaxNode

要插入之前的節點;清單成員元素之根節點的子代。

newNodes
IEnumerable<SyntaxNode>

要插入樹狀結構中的節點序列,緊接在指定的節點之前。

傳回

TRoot

適用於