[Modify] Add it
This commit is contained in:
parent
58e5ef372a
commit
9f742aa415
@ -393,6 +393,12 @@ namespace WebSocketSharp.Net
|
|||||||
_entities.Add ("euro", '\u20AC');
|
_entities.Add ("euro", '\u20AC');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static bool isAlphabet (byte b)
|
||||||
|
{
|
||||||
|
return (b >= 65 && b <= 90)
|
||||||
|
|| (b >= 97 && b <= 122);
|
||||||
|
}
|
||||||
|
|
||||||
private static bool isAlphabet (char c)
|
private static bool isAlphabet (char c)
|
||||||
{
|
{
|
||||||
return (c >= 'A' && c <= 'Z')
|
return (c >= 'A' && c <= 'Z')
|
||||||
|
Loading…
Reference in New Issue
Block a user