Exemple #1
0
 public bool Set(int posicion, Tipo_Collection valor)
 {
     try
     {
         Lista_valores[posicion] = valor;
         return(true);
     }
     catch { return(false); }
 }
Exemple #2
0
 public void Insert(Tipo_Collection valor)
 {
     Lista_valores.Add(valor);
 }