I have to store various HTML named character references for the following purposes:
Escaping special characters
myStringBuilder.Replace("À", WebHelper.Agrave)
Insert spaces in legacy reports
ReportButtons.Controls.Add(New LiteralControl(WebHelper.Space))
This is the way I used to store until now:
public static class WebHelper
{
#region [ Fields ]
public const string Agrave = "À";
public const string Space = " ";
#endregion
}
Is this Single-Generic-Helper-Class the best way to solve this problem? Should all my programs reference it?
just “space” is confusing. It's not the normal space, it's a non-breaking space. – svick Jul 4 '14 at 16:13