How to specify comma , space unicode value in app.config(C#3.0)
- by Newbie
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