gpt4 book ai didi

c# - 如何从 Roslyn 中的源代码获取语义模型

转载 作者:太空狗 更新时间:2023-10-29 23:05:43 24 4
gpt4 key购买 nike

在使用 Roslyn 的所有示例中,你有这样的东西:

SyntaxTree tree = CSharpSyntaxTree.ParseText(
@"using System;
using System.Collections.Generic;
using System.Text;

namespace HelloWorld
{
// A whole program here...
}");

var root = (CompilationUnitSyntax)tree.GetRoot();

// Getting the semantic model (for MSCORELIB)
var compilation = CSharpCompilation.Create("HelloWorld")
.AddReferences(
MetadataReference.CreateFromFile(
typeof(object).Assembly.Location))
.AddSyntaxTrees(tree);
var model = compilation.GetSemanticModel(tree);

如何为我的代码获取语义模型?

最后一段代码检索mscorelib 类型的语义模型:MetadataReference.CreateFromFile(typeof(object).Assembly.Location) 这样我就可以检查使用 或源的其他部分并获取符号信息。

但是如果我在 HelloWorld 中定义类型并想从中检索符号信息,我会使用语义模型。但是因为我刚刚加载了 mscorelib,所以我不会得到这个信息。

如何为我刚刚定义的源加载语义模型?

最佳答案

static void Main(string[] args)
{
SyntaxTree tree = CSharpSyntaxTree.ParseText(
@"using System;

namespace HelloWorld
{
public class MyType{public void MyMethod(){}}
}"
);

var root = (CompilationUnitSyntax)tree.GetRoot();
var compilation = CSharpCompilation.Create("HelloWorld")
.AddReferences(
MetadataReference.CreateFromFile(
typeof(object).Assembly.Location))
.AddSyntaxTrees(tree);
var model = compilation.GetSemanticModel(tree);
var myTypeSyntax = root.DescendantNodes().OfType<TypeDeclarationSyntax>().First();
var myTypeInfo = model.GetDeclaredSymbol(myTypeSyntax);
Console.WriteLine(myTypeInfo);
}

这是您需要的吗? myTypeInfo 是我在HelloWorld 中定义的类型,我可以得到信息。

只是解释一下,语义模型是你可以从编译中得到的东西。一旦你有了一个汇编,你就可以从这个汇编中获取所有信息。不仅仅是来自添加的引用(在您的情况下为 mscorlib)。

关于c# - 如何从 Roslyn 中的源代码获取语义模型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40780767/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com