Exemplo n.º 1
0
 public static bool IsIdentifierCharacter(char ch)
 {
     return(CharacterStream.IsAnsiLetter(ch) || CharacterStream.IsDecimal(ch) || ch == '.' || ch == '_');
 }