Beispiel #1
0
 public MapBuilder Item(string from, object to)
 {
     _map[from] = new Main.Item(to);
     return(this);
 }
 public MapBuilder Item(string from, object to) {
     _map[from] = new Main.Item(to);
     return this;
 }
Beispiel #3
0
 public MapBuilder Item(string from, object to, string parameter)
 {
     _map[from] = new Main.Item(parameter, to);
     return(this);
 }
 public MapBuilder Item(string from, object to, string parameter) {
     _map[from] = new Main.Item(parameter, to);
     return this;
 }