Exemplo n.º 1
0
 public static bool IsPunctuator(ComprenoSentenceElementType type)
 {
     return type.Value == Punctuator_FullStop.Value
        || type.Value == Punctuator_Comma.Value
        || type.Value == Punctuator_LeftRoundBracket.Value
        || type.Value == Punctuator_RightRoundBracket.Value
        || type.Value == Punctuator_Colon.Value
         ;
 }
Exemplo n.º 2
0
 public static bool IsWord(ComprenoSentenceElementType type)
 {
     return type.Value == Word.Value;
 }
Exemplo n.º 3
0
 public static bool IsBracket(ComprenoSentenceElementType type)
 {
     return type.Value == Punctuator_LeftRoundBracket.Value
        || type.Value == Punctuator_RightRoundBracket.Value
         ;
 }