private char GetMatchCloseCharacter(char c)
 {
     return(MatchingCharacters.First(pair => pair.Key == c).Value);
 }
Exemple #2
0
 protected virtual char GetMatchOpenCharacter(char c)
 {
     return(MatchingCharacters.First(pair => pair.Value == c).Key);
 }
 private char GetMatchOpenCharacter(char c)
 {
     return(MatchingCharacters.First(pair => pair.Value == c).Key);
 }
Exemple #4
0
 protected virtual char GetMatchCloseCharacter(char c)
 {
     return(MatchingCharacters.First(pair => pair.Key == c).Value);
 }