Dear Friends,

It would be nice if you can help me with this, I checked the net but must of tutorials are so complicated for a beginner like me

I have created a xml file like this:

<?xml version="1.0" encoding="utf-8" ?>
<config>
<recalls>
<hbm400neg>D:\setups\hbm400neg.css</hbm400neg>
<hbm400pos>D:\setups\hbm400neg.css</hbm400pos>
<hbm1000neg>D:\setups\hbm400neg.css</hbm1000neg>
<hbm1000pos>D:\setups\hbm400neg.css</hbm1000pos>
</recalls>
</config>


What I want to do is have those 4 sub elemtns of <recalls> to be stored as a string like this for example if we do it normally in the c#:

string hbm400neg = "D:\setups\hbm400neg.css";

how is it possible?
Thanks.