コード例 #1
0
ファイル: RTokenizer.cs プロジェクト: bear256/RTVS
 public static bool IsIdentifierCharacter(char ch)
 {
     return(CharacterStream.IsLetter(ch) || CharacterStream.IsDecimal(ch) || ch == '.' || ch == '_');
 }