[Modify] Add it

This commit is contained in:
sta 2018-08-26 21:36:04 +09:00
parent fb323c0ceb
commit 6c23bc8683

View File

@ -56,8 +56,18 @@ namespace WebSocketSharp.Net
#region Private Fields
private static Dictionary<string, char> _entities;
private static char[] _hexChars = "0123456789abcdef".ToCharArray ();
private static object _sync = new object ();
private static char[] _hexChars;
private static object _sync;
#endregion
#region Static Constructor
static HttpUtility ()
{
_hexChars = "0123456789abcdef".ToCharArray ();
_sync = new object ();
}
#endregion