What is the ASCII reference for §?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • cdpat

    What is the ASCII reference for §?

    Hi Friends,

    I was processing files in my C# code where files had delimiter of tab so my code stmt looked like

    split('\t');

    now those files have delimiter changed to §

    anyone can give me ASCII value for that?

    Many thanks
  • Bassem
    Contributor
    • Dec 2008
    • 344

    #2
    Hi, look at this line:
    Code:
    MessageBox.Show(Convert.ToInt32('§').ToString());
    It gives me 167! But why don't you use Split('§')?

    Comment

    Working...