In the app.config file if I use
<add key = "FileDelimeter" value ="c;"/> as unicode for COMMA, it is throwing error
Invalid character in a decimal number ‘c’
For SPACE, <add key = "FileDelimeter" value =""/> the error is
Character”, hex value 0*14 is illegal
in xml
while <add key = "FileDelimeter" value ="	"/> for “\t” worked.
Where is the mistake?
Kindly give a generic solution.
Thanks
The
&#prefix denotes a decimal (base 10) number. Try using&#x(the ‘x’ is for Hexadecimal) as the prefix: