Answers for "export xml"

C#
0

export xml

var xmlDoc = new XElement("TestPoints",
                from test in g.dc.users
                select
                new XElement("TestPoint",
                    new XElement("Id", test.id_user),
                    new XElement("Value", test.username)
                    )
                );
            xmlDoc.Save("test.xml");
Posted by: Guest on May-05-2022

C# Answers by Framework

Browse Popular Code Answers by Language