I have an XML file which reads:
<?xml version="1.0"?>
<Wallpaper>
<Name>Default</Name>
</Wallpaper>
Now i need to read this file from my c# application and assign the value of <Name> to a string.
This is for the preferences file of my app.
Thanks in advance.
<?xml version="1.0"?>
<Wallpaper>
<Name>Default</Name>
</Wallpaper>
Now i need to read this file from my c# application and assign the value of <Name> to a string.
This is for the preferences file of my app.
Thanks in advance.