使用XDocument.Parse加载xml时如何保留ASCII编码?

时间:2010-11-25 20:32:59

标签: encoding ascii linq-to-xml

当我使用XDocument.Parse加载带有encoding =“us-ascii”的xml文档时,生成的文档已将ascii转换为utf-8。

例如,在我的xml文件中,我有(不是完整文件)

<data>&#233; some other stuff</data>

加载后,它会转换为

<data>é some other stuff</data>

我该怎样防止这种情况?我需要以后能够选择后代并将它们重新写入另一个文件,但是当这样做时,它会被转换。

0 个答案:

没有答案