private bool IsMatchCloseCharacter(char c)
 {
     return(MatchingCharacters.Any(pair => pair.Value == c));
 }
Exemplo n.º 2
0
 protected virtual bool IsMatchCloseCharacter(char c)
 {
     return(MatchingCharacters.Any(pair => pair.Value == c));
 }
 private bool IsMatchStartCharacter(char c)
 {
     return(MatchingCharacters.Any(pair => pair.Key == c));
 }
Exemplo n.º 4
0
 protected virtual bool IsMatchStartCharacter(char c)
 {
     return(MatchingCharacters.Any(pair => pair.Key == c));
 }