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

        #region [ IList ]

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