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