public static void IntroducirDatos(Numeros x) { int i = 0, n = 0, t = x.Tamaño(); for (i = 0; i < t; i++) { Console.Write("Valor: "); n = Leer.datoInt(); x.AsignarValor(n, i); } }