Match<TNode>.GetSequenceEdits Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns an edit script (a sequence of edits) that transform a sequence of nodes oldNodes
to a sequence of nodes newNodes.
public:
System::Collections::Generic::IEnumerable<Microsoft::CodeAnalysis::Differencing::Edit<TNode>> ^ GetSequenceEdits(System::Collections::Generic::IEnumerable<TNode> ^ oldNodes, System::Collections::Generic::IEnumerable<TNode> ^ newNodes);
public System.Collections.Generic.IEnumerable<Microsoft.CodeAnalysis.Differencing.Edit<TNode>> GetSequenceEdits(System.Collections.Generic.IEnumerable<TNode> oldNodes, System.Collections.Generic.IEnumerable<TNode> newNodes);
member this.GetSequenceEdits : seq<'Node> * seq<'Node> -> seq<Microsoft.CodeAnalysis.Differencing.Edit<'Node>>
Public Function GetSequenceEdits (oldNodes As IEnumerable(Of TNode), newNodes As IEnumerable(Of TNode)) As IEnumerable(Of Edit(Of TNode))
Parameters
- oldNodes
- IEnumerable<TNode>
- newNodes
- IEnumerable<TNode>
Returns
Exceptions
oldNodes or newNodes is a null reference.