C
Chris
HI,
what is the purpose of XmlConvert.ToString() ?
why not just use Convert.ToString() ?
e.g.
Int32 vInt32 = -2147483648;
string s1 = XmlConvert.ToString(vInt32);
string s2 = Convert.ToString(vInt32);
s1 and s2 result in the same string.
so what is the added benefit ?
thnx
Chris
what is the purpose of XmlConvert.ToString() ?
why not just use Convert.ToString() ?
e.g.
Int32 vInt32 = -2147483648;
string s1 = XmlConvert.ToString(vInt32);
string s2 = Convert.ToString(vInt32);
s1 and s2 result in the same string.
so what is the added benefit ?
thnx
Chris