VisualBasicSyntaxTree.GetChangedSpans(SyntaxTree) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
生成一个悲观的跨度列表,该列表表示此树中已从旧树的文本更改的文本区域。
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
。
返回
注解
列表是悲观的,因为它可能会声称比实际更改的更多或更大的区域。