[Modify] Add it
This commit is contained in:
parent
9f742aa415
commit
67176e17ba
@ -405,6 +405,11 @@ namespace WebSocketSharp.Net
|
|||||||
|| (c >= 'a' && c <= 'z');
|
|| (c >= 'a' && c <= 'z');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static bool isNumeric (byte b)
|
||||||
|
{
|
||||||
|
return b >= 48 && b <= 57;
|
||||||
|
}
|
||||||
|
|
||||||
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