using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PideNombres { class Program { static void Main(string[] args) { string nombre = ""; List nombres = new List(); do { Console.Write("Nombre: "); nombre = Console.ReadLine(); if (nombre != "0"){ nombres.Add(nombre); } } while (nombre != "0"); foreach (string n in nombres) { Console.WriteLine(n); } Console.ReadLine(); } } }