VisualBasicSyntaxTree.GetChangedSpans(SyntaxTree) 方法

定义

生成一个悲观的跨度列表,该列表表示此树中已从旧树的文本更改的文本区域。

public:
 override System::Collections::Generic::IList<Microsoft::CodeAnalysis::Text::TextSpan> ^ GetChangedSpans(Microsoft::CodeAnalysis::SyntaxTree ^ oldTree);
public override System.Collections.Generic.IList<Microsoft.CodeAnalysis.Text.TextSpan> GetChangedSpans (Microsoft.CodeAnalysis.SyntaxTree oldTree);
override this.GetChangedSpans : Microsoft.CodeAnalysis.SyntaxTree -> System.Collections.Generic.IList<Microsoft.CodeAnalysis.Text.TextSpan>
Public Overrides Function GetChangedSpans (oldTree As SyntaxTree) As IList(Of TextSpan)

参数

oldTree
SyntaxTree

老树。 不能为 Nothing

返回

注解

列表是悲观的,因为它可能会声称比实际更改的更多或更大的区域。

适用于