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

            return(add);
        }