Are their any good way to genrate XML file through C# in .net
- by steven spielberg
i wanto make a xml file like
<?xml version="1.0" encoding="Windows-1252" ?>
<settings>
<typeofsetting>
<wordname="add" />
</typeofsettings>
</settings>
the wordname can be depend on what user need. how i can make a application that user can generate the XML file of thing they want. are their any good way to do this.
the wordname not user defined it's come from database the application have inbuilt.
are their any good practice to do this in c# win-forms.