Exemplo n.º 1
0
 public bool Contains(ObjetoEstatus <T> item)
 {
     return(this.Lista.Contains(item));
 }
Exemplo n.º 2
0
 public void Add(ObjetoEstatus <T> item)
 {
     this.Lista.Add(item);
 }
Exemplo n.º 3
0
        /* private bool VerLlaveRepetida(string sLLave)
         * {
         *
         * } */

        #region [ IList ]

        public int IndexOf(ObjetoEstatus <T> item)
        {
            return(this.Lista.IndexOf(item));
        }
Exemplo n.º 4
0
 public void Insert(int index, ObjetoEstatus <T> item)
 {
     this.Lista.Insert(index, item);
 }
Exemplo n.º 5
0
 public bool Remove(ObjetoEstatus <T> item)
 {
     return(this.Lista.Remove(item));
 }