Read and map xml file into a C# object

Read and Map XML file into a C# Object

[HttpGet]
[Route("API/Map/XMLToObject")]
public async Task<IHttpActionResult> XMLToObject()
{
    string XMLfilePath = "D:\\Projects\\TutorialStore\\TutorialStore\\App_Data\\test.xml";
    TextReader reader = new StreamReader(XMLfilePath);
    XmlSerializer deserializer = new XmlSerializer(typeof(emp));
    emp obj = (emp)deserializer.Deserialize(reader);
    reader.Close();

    return Json("OK");
}

//emp property class .
public class emp
{
    public int ID { get; set; }
    public string Name { get; set; }
    public int Age { get; set; }

}
ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

www.code-sample.com/. Powered by Blogger.
^