gpt4 book ai didi

c# - 如何使用 FieldTypeDeclaration ( Roslyn ) 更改字段类型

转载 作者:行者123 更新时间:2023-11-30 21:54:28 24 4
gpt4 key购买 nike

我正在使用 visual studio 项目类型 - 独立代码分析工具。我正在使用以下代码,但 ToString() 显示了意外结果。

static void Main(string[] args)
{
var classDoc = @"public class SomeClass{
private SomeOtherClass someOtherClass;
}";

SyntaxTree classTree=SyntaxFactory.ParseSyntaxTree(classDoc);
var classDecl = (ClassDeclarationSyntax)classTree.GetRoot().DescendantNodes()
.First(d => d is ClassDeclarationSyntax);

var field = classDecl.Members.OfType<FieldDeclarationSyntax>().First();
var fieldType = field.Declaration.Type;
var newFieldType = SyntaxFactory.ParseName("System.Windows.Forms.UserControl");
var newField=field.ReplaceNode(fieldType, newFieldType);
var newFieldStr = newField.ToString();
}

newFieldStr 的值为

private System.Windows.Forms.UserControlsomeOtherClass;

请告诉我怎样才能得到预期的结果。

最佳答案

作为记录,您可以只添加原始语法节点中的琐事:

var newFieldType = SyntaxFactory.ParseName("System.Windows.Forms.UserControl")
.WithTriviaFrom(fieldType);

关于c# - 如何使用 FieldTypeDeclaration ( Roslyn ) 更改字段类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33067982/

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