Ejemplo n.º 1
0
 bool ICollection <PropertyState <T> > .Remove(PropertyState <T> item)
 {
     return(this.Remove(item));
 }
Ejemplo n.º 2
0
 void ICollection <PropertyState <T> > .Add(PropertyState <T> item)
 {
     this.Add(item);
 }
Ejemplo n.º 3
0
 bool ICollection <PropertyState <T> > .Contains(PropertyState <T> item)
 {
     return(this.Contains(item));
 }
Ejemplo n.º 4
0
 public bool Remove(PropertyState <T> item)
 {
     return(this.innerList.Remove(item));
 }
Ejemplo n.º 5
0
 public bool Contains(PropertyState <T> item)
 {
     return(this.innerList.Contains(item));
 }
Ejemplo n.º 6
0
 public void Add(PropertyState <T> item)
 {
     this.innerList.Add(item);
 }
Ejemplo n.º 7
0
 public void Insert(int index, PropertyState <T> item)
 {
     this.innerList.Insert(index, item);
 }
Ejemplo n.º 8
0
 public int IndexOf(PropertyState <T> item)
 {
     return(this.innerList.IndexOf(item));
 }