I have email addresses encoded with HTML character entities. Is there anything in .NET that can convert them to plain strings?
|
You can use If you are using .NET 4.0+ you can also use |
|||||||||||||||||||
|
|
On .Net 4.0
No need to include assembly for a C# project |
|||||
|
|
As @CQ says, you need to use HttpUtility.HtmlDecode, but it's not available in a non-ASP .NET project by default. For a non-ASP .NET application, you need to add a reference to Now that the reference is added, you should be able to access the method using the fully-qualified name |
|||
|
|
|
If there is no Server context (i.e your running offline), you can use HttpUtility.HtmlDecode. |
|||
|
|
|
Use |
|||||
|