Exemplo n.º 1
0
 public int LastIndexOf(RelationalListPair <T1, T2> item) => LastIndexOf(item.X, item.Y);
Exemplo n.º 2
0
 public bool Contains(RelationalListPair <T1, T2> item) => Contains(item.X, item.Y);
Exemplo n.º 3
0
 public void Remove(RelationalListPair <T1, T2> item)
 {
     Remove(item.X, item.Y);
 }
Exemplo n.º 4
0
 public void Insert(RelationalListPair <T1, T2> item, int index)
 {
     Insert(item.X, item.Y, index);
 }
Exemplo n.º 5
0
 public void Add(RelationalListPair <T1, T2> item)
 {
     Add(item.X, item.Y);
 }