예제 #1
0
 public void CopyTo(Array array, int index)
 {
     InternalIList.CopyTo(array, index);
 }
예제 #2
0
 public void Remove(object value)
 {
     InternalIList.Remove(value);
 }
예제 #3
0
 public void Insert(int index, object value)
 {
     InternalIList.Insert(index, value);
 }
예제 #4
0
 public int IndexOf(object value)
 {
     return(InternalIList.IndexOf(value));
 }
예제 #5
0
 public bool Contains(object value)
 {
     return(InternalIList.Contains(value));
 }
예제 #6
0
 public int Add(object value)
 {
     return(InternalIList.Add(value));
 }