static void Main(string[] args) { int option; NumberCollection nc = new NumberCollection(); nc.Add(1); nc.Add(2); nc.Add(3); nc.Add(4); nc.Add(5); nc.Add(-5); do { Console.WriteLine("What would you like to do?"); Console.WriteLine("1 - Sort the array"); Console.WriteLine("2 - Multiply the array by 2"); Console.WriteLine("3 - Exit"); option = Int32.Parse(Console.ReadLine()); if (option == 1) { nc.Sort(); } else if (option == 2) { nc.Multiply(); } Console.WriteLine(nc.ToString()); } while (option != 3); }
static void Main(string[] args) { NumberCollection collection = new NumberCollection(); collection.Add(1); collection.Add(5); collection.Add(4); collection.Add(3); collection.Add(15); collection.Add(12); collection.Add(7); collection.Remove(7); collection.Remove(1); collection.Remove(5); }
static void Main(string[] args) { NumberCollection nc = new NumberCollection(); nc.Add(1); nc.Add(2); nc.Add(3); nc.Add(4); nc.Add(5); nc.Add(6); nc.Add(7); nc.Add(8); nc.Add(9); nc.Sort(); nc.Add(10); nc.Add(11); nc.Sort(); }