I'm writing a software in C# WPF with the framework 4.6.
I need to convert some HTML to text. The easiest way seems to be by using the HttpUtility.HtmlDecode() method in the System.web library.
I can add this library with using System.Web, but it seems HttpUtility it still unrecognized.
How can I fix this ?
Edit : I also added the reference by the treeview in the solution explorer and it worked. I don't understand why though. I think it could be usefull to someone one day as I didn't find this solution there.