标签: c# xml attributes
我在C#中序列化XML并将根元素设置为具有以下内容的一个属性:
XmlDocument xml = GetXMLDocument(); xml.DocumentElement.SetAttribute("code", "1234");
但是现在可以存在与每个XML相关联的多个代码,例如code =“1234”,code =“2345”等。
如何在C#中表示这一点以实现我的需求?
谢谢!