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

            return(add);
        }