예제 #1
0
 public virtual void Insert( int index, DOPLEntry entry )
 {
     List.Insert( index, entry );
 }
예제 #2
0
 public virtual void Remove( DOPLEntry entry )
 {
     List.Remove( entry );
 }
예제 #3
0
 public virtual void CopyTo( DOPLEntry[] array, int index )
 {
     List.CopyTo( array, index );
 }
예제 #4
0
 public virtual int IndexOf( DOPLEntry entry )
 {
     return List.IndexOf( entry );
 }
예제 #5
0
 public virtual int Add( DOPLEntry entry )
 {
     int add = List.Add( entry );
     return add;
 }
예제 #6
0
 public virtual bool Contains( DOPLEntry entry )
 {
     return List.Contains( entry );
 }
예제 #7
0
 public virtual void Remove(DOPLEntry entry)
 {
     List.Remove(entry);
 }
예제 #8
0
 public virtual void Insert(int index, DOPLEntry entry)
 {
     List.Insert(index, entry);
 }
예제 #9
0
 public virtual int IndexOf(DOPLEntry entry)
 {
     return(List.IndexOf(entry));
 }
예제 #10
0
 public virtual bool Contains(DOPLEntry entry)
 {
     return(List.Contains(entry));
 }
예제 #11
0
        public virtual int Add(DOPLEntry entry)
        {
            int add = List.Add(entry);

            return(add);
        }