예제 #1
0
파일: RTokenizer.cs 프로젝트: bear256/RTVS
 public static bool IsIdentifierCharacter(char ch)
 {
     return(CharacterStream.IsLetter(ch) || CharacterStream.IsDecimal(ch) || ch == '.' || ch == '_');
 }