所以,我有一些数据的形式:
<foo><bar>test</bar></foo>
我想使用什么.NET类/函数将其转换为漂亮的东西,并将其写入一个看起来像这样的文件:
<foo> <bar> test </bar> </foo>
具体的功能和类别,不只是“使用System.XML”.在.NET中使用XML的方式似乎有很多不同的方法:(
谢谢
解决方法
使用System.Xml.XmlDocument类…
Dim Val As String = "<foo><bar>test</bar></foo>" Dim Xml As String = HttpUtility.HtmlDecode(Val) Dim Doc As New XmlDocument() Doc.LoadXml(Xml) Dim Writer As New StringWriter() Doc.Save(Writer) Console.Write(Writer.ToString())