コード例 #1
0
 public void Insert(int index, YourType value)
 {
     ((IList)this).Insert(index, (object) value);
 }
コード例 #2
0
 public void Remove(YourType value)
 {
     ((IList)this).Remove((object) value);
 }
コード例 #3
0
 // Provide the strongly typed member for ICollection.
 public void CopyTo(YourType[] array, int index)
 {
     ((ICollection)this).CopyTo(array, index);
 }
コード例 #4
0
 public int IndexOf(YourType value)
 {
     return ((IList)this).IndexOf((object) value);
 }
コード例 #5
0
 public int Add(YourType value)
 {
     return ((IList)this).Add ((object) value);
 }
コード例 #6
0
 public bool Contains(YourType value)
 {
     return ((IList)this).Contains((object) value);
 }
コード例 #7
0
 public int IndexOf(YourType value)
 {
     return(((IList)this).IndexOf((object)value));
 }
コード例 #8
0
 public void Remove(YourType value)
 {
     ((IList)this).Remove((object)value);
 }
コード例 #9
0
 public void Insert(int index, YourType value)
 {
     ((IList)this).Insert(index, (object)value);
 }
コード例 #10
0
 public bool Contains(YourType value)
 {
     return(((IList)this).Contains((object)value));
 }
コード例 #11
0
 public int Add(YourType value)
 {
     return(((IList)this).Add((object)value));
 }