using (System.IO.StreamReader sr = new System.IO.StreamReader(path, System.Text.Encoding.GetEncoding("Windows-1252"), true))
{
xdoc = XDocument.Load(sr);
}
这是我的 XML
<sheet name="sheet1" bounds="160,128,464,288">
<text name="text1" bounds="160,128,464,288" text="a
b"/>
</sheet>
XDocument.Load 转换
a
b
到
a b
如何保留我的换行符?