isNumberCharacter static method

bool isNumberCharacter(
  1. int codeUnit
)

Whether is a number character

Implementation

static bool isNumberCharacter(int codeUnit)
{
  return codeUnit > 47 && codeUnit < 58;
}