private char GetMatchCloseCharacter(char c)
 {
     return(MatchingCharacters.First(pair => pair.Key == c).Value);
 }
Esempio n. 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);
 }
Esempio n. 4
0
 protected virtual char GetMatchCloseCharacter(char c)
 {
     return(MatchingCharacters.First(pair => pair.Key == c).Value);
 }