my config.xml is as follows:
<test>ab&c</test>
i use the following code to read this xml:
string str1 = XML_.getValue("test","0");
but str1 is "abc" not "ab&c". how can we read '&' from xml?
my config.xml is as follows:
<test>ab&c</test>
i use the following code to read this xml:
string str1 = XML_.getValue("test","0");
but str1 is "abc" not "ab&c". how can we read '&' from xml?