[Solved] Create xml file with dataset like this format
If you want to create some custom xml that you can use XElement. How to create <_XPXML Note=”” CrtTime=”” CN=”” DBN=”” Srv=”” Ver=”” AppId=”” Class=”” IC=”” Stock=”” Desc=””>? You can use the code below to create. var node=new XElement(“_XPXML “); node.SetAttributeValue(“Note”,””); node.SetAttributeValue(“CrtTime”,””); // … // please write the Attribute doc.Root.Add(node); Before you use the code … Read more