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