You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
stringsourceText=@"class User{ public string Name { get; set; }}";SyntaxTreesyntaxTree=CSharpSyntaxTree.ParseText(sourceText);
四、SourceText可以转化为ISymbol
可以通过编译转化为ISymbol
但是ISymbol是不能转化为源码
ISymbol用于反射类型信息
stringsourceText=@"class User{ public string Name { get; set; }}";SyntaxTreesyntaxTree=CSharpSyntaxTree.ParseText(sourceText);varcompilation=CSharpCompilation.Create("Tests",[syntaxTree]);INamedTypeSymbol?userSymbol=compilation.GetTypeByMetadataName("User");