Karthik_Mahalingam
относиться Класс XmlSerializer (System. Xml. Serialization)[^] класс
выполните следующие действия
Создание объекта с помощью свойства в том виде, как
public class MyEntity
{
public string Name { get; set; }
public string Age { get; set; }
public string Address { get; set; }
}
приведенный ниже код предназначен для использования Asp.net приложение, однако концепция одинакова для mvc или window и т. д..
protected void btnSave_Click(object sender, EventArgs e)
{
// create a folder 'xmlfiles' in the root directory
string filePath = Server.MapPath("xmlfiles") + "//" + "myfile.xml"; // Path for the xml
MyEntity entity = new MyEntity();
// initalise the properties of the entity
entity.Name = txtName.Text;
entity.Age = txtAge.Text;
entity.Address = txtAddress.Text;
// end
XmlSerializer xs = new XmlSerializer(typeof(MyEntity));
TextWriter tw = new StreamWriter(filePath);
xs.Serialize(tw, entity);
}