Ejemplo n.º 1
0
 public string this[char character] {
     get {
         string code = string.Empty;
         SymbolCodes.TryGetValue(character, out code);
         return(code);
     }
 }
Ejemplo n.º 2
0
 public string this[char character] {
     get {
         SymbolCodes.TryGetValue(character, out string?code);
         return(code ?? string.Empty);
     }
 }