在CTP版本中,我曾经编写下面的代码来保存对格式化文件的更改。知道RTM中有什么变化吗?
IEnumerable<IFormattingRule> rules = FormattingRules.GetDefaultRules("C#");
File.WriteAllText(
filePath,
modifiedTree.Format(FormattingOptions.GetDefaultOptions(), rules).GetFormattedRoot().ToFullString());