[Modify] Add it
This commit is contained in:
parent
b7b0db9f19
commit
73342ac5ae
@ -393,6 +393,12 @@ namespace WebSocketSharp.Net
|
|||||||
_entities.Add ("euro", '\u20AC');
|
_entities.Add ("euro", '\u20AC');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static bool isAlphabet (char c)
|
||||||
|
{
|
||||||
|
return (c >= 'A' && c <= 'Z')
|
||||||
|
|| (c >= 'a' && c <= 'z');
|
||||||
|
}
|
||||||
|
|
||||||
private static bool isNumeric (char c)
|
private static bool isNumeric (char c)
|
||||||
{
|
{
|
||||||
return c >= '0' && c <= '9';
|
return c >= '0' && c <= '9';
|
||||||
|
Loading…
Reference in New Issue
Block a user