3

我正在使用 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;

请告知我如何获得预期的结果。

4

2 回答 2

3

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

var newFieldType = SyntaxFactory.ParseName("System.Windows.Forms.UserControl")
                                .WithTriviaFrom(fieldType);
于 2015-10-11T21:06:58.920 回答
0

我会使用这个“单线”来完成所有工作:

var newField = field.WithDeclaration(
                    field.Declaration.WithType(
                            SyntaxFactory.ParseName("System.Windows.Forms.UserControl")
                                         .WithTriviaFrom(field.Declaration.Type)));
于 2016-06-14T11:52:53.720 回答