Hi is there any way to download a DLL for XML so that i can use it in my project and how to read the XML file ? Say for example i want to read the first name's and last name's.
<?xml version="1.0"?>
<configuration>
  <appSettings>
     <add key="firstname" value="David"/>
     <add key="Lastname" value="Alan"/>
     <add key="Age" value="35"/>
     <add key="gender" value="male"/> 
     </appSettings> 
 </configuration>
 
    