internal static bool IsLetterOrDigit(ref char c) { return(CharacterClass.IsDigit(ref c) || CharacterClass.IsLetter(ref c)); }