So its my first time working with XML documents and i need some help. I have this segment in my XML file:
<configuration>
<appSettings>
<add key="PhoneVersion" value="36.999.1" />
<add key="TabletVersion" value="36.999.1" />
<add key="DesktopVersion" value="36.999.1" />
</appSettings>
</configuration>
I am trying to read the Value of each line and increment the final digit by +1.
I am able to read the entire file however i just want to read the lines stated.
Any help??