Exemplo n.º 1
0
 public void RegisterParser <T>(ParserCallback <T> callback)
 {
     _parsers[typeof(T)] = callback;
 }
Exemplo n.º 2
0
 public void RegisterParser(Type type, ParserCallback func)
 {
     parsers[type] = func;
 }