2

Possible Duplicate:
How can I decode html characters in c#?

I have characters incoming from an HTML, for example:

" ' & > 

Exists an native function in C# to convert to your equivalents? Thanks,advanced.

EDIT I'm writing a console app

Community
  • 1
  • 1
The Mask
  • 17,007
  • 37
  • 111
  • 185

1 Answers1

7

I believe HttpUtility.HtmlDecode is what you're looking for.

Simon Mourier
  • 132,049
  • 21
  • 248
  • 298