CaptainBob007
Programmer
Hello,
I'm working on a system to parse XML files we receive from a client and transform them to HTML. One of the characters contained in this XML file is the "paragraph" symbol, which I will show: ¶
The file is standard XML 1.0 in UTF-8. I can't figure out for the life of me how to get C# to parse this symbol. I tried entering it literally, such as
and also in unicode, like
both of which have been to no avail. Is there something I'm missing here?
I'm working on a system to parse XML files we receive from a client and transform them to HTML. One of the characters contained in this XML file is the "paragraph" symbol, which I will show: ¶
The file is standard XML 1.0 in UTF-8. I can't figure out for the life of me how to get C# to parse this symbol. I tried entering it literally, such as
Code:
string.IndexOf('¶')
Code:
string.IndexOf('u\00B6')