编程语言
首页 > 编程语言> > c#-ISymbol.DeclaringSyntaxReferences和ISymbol.Locations之间的区别

c#-ISymbol.DeclaringSyntaxReferences和ISymbol.Locations之间的区别

作者:互联网

ISyntax界面中的DeclaringSyntaxReferences属性和Locations属性有什么区别?

解决方法:

答案的线索在< marks>中.评论部分:

The syntax node(s) that declared the symbol. If the symbol was declared in metadata or was implicitly declared, returns an empty read-only array.

这意味着,位置也会返回元数据引用声明和隐式声明的位置.您可以在LocationsTests.cs文件中查看有关证据:

var c = s.GetTypeMembers("C", 0).Single() as NamedTypeSymbol;
var obj = c.BaseType;
Assert.Equal("MetadataFile(CommonLanguageRuntimeLibrary)", obj.Locations[0].ToString());

其中c是C中的类:

namespace N.S{class C{int F; void M(int P}{}}

所以obj是System.Object.这是有道理的,因为您在编译时没有定义System.Object的任何实际源代码和语法.

标签:roslyn,roslyn-code-analysis,c
来源: https://codeday.me/bug/20191026/1939303.html