[Modify] Add it

This commit is contained in:
sta 2018-09-10 21:19:01 +09:00
parent 0b7c2208fa
commit b7b0db9f19

View File

@ -393,6 +393,11 @@ namespace WebSocketSharp.Net
_entities.Add ("euro", '\u20AC');
}
private static bool isNumeric (char c)
{
return c >= '0' && c <= '9';
}
private static bool notEncoded (char c)
{
return c == '!' ||