我试图模仿的XML看起来像这样
<?xml version="1.0" enCoding="utf-8"?><ArrayOfStock xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Stock> <ProductCode>12345</ProductCode> <ProductPrice>10.32</ProductPrice> </Stock> <Stock> <ProductCode>45632</ProductCode> <ProductPrice>5.43</ProductPrice> </Stock></ArrayOfStock>
我的问题是如何使用MSXML库创建以下行?
<?xml version="1.0" enCoding="utf-8"?>
IE:如何创建未终止的“标题”值?
解决方法 看看这个 similar question.总结You need to use a MXXMLWriter60,instead of saving it directly. … See 07001 for details.
以上是内存溢出为你收集整理的c# – MSXML创建XML“标题”全部内容,希望文章能够帮你解决c# – MSXML创建XML“标题”所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)