XML 文件到其他基于模式的 XML 文件使用 c#

XML file to other schema based XML file using c#

是否可以使用 c# 根据其他模式 XSD 重写 XML 文件?

这是 XML 文件

这是当前架构 XSD 文件

这是新架构,一切都相同,但更改了节点名称

那么如何使用 c# 根据新的 XSD 从旧的 XML 得到新的 XML?

使用 xml linq :

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml;
using System.Xml.Linq;


namespace ConsoleApplication13
{
    class Program
    {
        const string FILENAME = @"c:\temp\test.xml";
        static void Main(string[] args)
        {
            XDocument doc = XDocument.Load(FILENAME);

            List<XElement> shipTo = doc.Descendants("shipto").ToList();

            foreach (XElement ship in shipTo)
            {
                ship.Element("name").ReplaceWith(new XElement("FullName", (string)ship.Element("name")));
                ship.Element("address").ReplaceWith(new XElement("FirstAddress", (string)ship.Element("address")));
                ship.Element("city").ReplaceWith(new XElement("homeTown", (string)ship.Element("city")));
                ship.Element("country").ReplaceWith(new XElement("HomeLand", (string)ship.Element("country")));

            }

        }

    }

}