I have an XML document RESTORE.XML It saves these values.
<EmployeeDetails> <EmployeeID>156824</EmployeeID> <EmployeeName>ALEX</EmployeeName> <EmployeeAge>29</EmployeeAge> </EmployeeDetails>
From my C # application, I want to read these three values and save it in 3 different variables.
How to do this using C #? Thanks.
source share