Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class Lista<T>
- {
- private T[] arreglo;
- public Lista(int tamanio)
- {
- arreglo = new T[tamanio];
- }
- public T ObtenerElemento(int indice)
- {
- return arreglo[indice];
- }
- public void AgregarElemento(int indice, T valor)
- {
- arreglo[indice] = valor;
- }
- public static void Main ()
- {
- Lista<int> listaEnteros = new Lista<int>(5);
- listaEnteros.AgregarElemento(0, 2);
- listaEnteros.AgregarElemento(1, 3);
- listaEnteros.AgregarElemento(2, 5);
- listaEnteros.AgregarElemento(3, 7);
- listaEnteros.AgregarElemento(4, 11);
- Lista<double> listaDoubles = new Lista<double>(3);
- listaDoubles.AgregarElemento(7.11);
- listaDoubles.AgregarElemento(13.17);
- listaDoubles.AgregarElemento(19.23);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement