Пример #1
0
 public void Register(InputMapper map)
 {
     foreach (var kvp in Keys)
     {
         map.Add(kvp.Key, (buf) =>
         {
             emit.OnKey(kvp.Value);
             return(kvp.Key.Length);
         });
     }
 }
Пример #2
0
 public void Register(InputMapper mapper)
 {
     mapper.Add(PREFIX, Process);
 }