0

Of the FCL classes (or even using an external API) is there a utility assembly, class or members that can be plugged into a .NET application to convert all named entities to their numeric equivalents?

For example, É would become É.

John K
  • 28,441
  • 31
  • 139
  • 229

1 Answers1

1

You may take a look at the HtmlDecode and HtmlEncode methods:

class Program
{
    static void Main()
    {
        var s = HttpUtility.HtmlDecode("É");
        s = HttpUtility.HtmlEncode(s);
        Console.WriteLine(s); // prints É
    }
}
Darin Dimitrov
  • 1,023,142
  • 271
  • 3,287
  • 2,928