SyntaxTree.GetChanges(SyntaxTree) 方法

定义

获取应用于旧树时生成此树的文本更改列表。

public:
 abstract System::Collections::Generic::IList<Microsoft::CodeAnalysis::Text::TextChange> ^ GetChanges(Microsoft::CodeAnalysis::SyntaxTree ^ oldTree);
public abstract System.Collections.Generic.IList<Microsoft.CodeAnalysis.Text.TextChange> GetChanges (Microsoft.CodeAnalysis.SyntaxTree oldTree);
abstract member GetChanges : Microsoft.CodeAnalysis.SyntaxTree -> System.Collections.Generic.IList<Microsoft.CodeAnalysis.Text.TextChange>
Public MustOverride Function GetChanges (oldTree As SyntaxTree) As IList(Of TextChange)

参数

oldTree
SyntaxTree

老树。

返回

注解

更改列表可能与生成此树的原始更改不同。

适用于