H8b Collections (Non-generic) - Opwarmen 1 - ArrayList Element toevoegen met Add

Log in om je oplossingen te testen.
using System; using System.Collections; namespace Collections { public class Program { public static void Main(string[] args) { //================================= //Onderstaande code niet aanpassen //================================= ArrayList starWarsFilms = new ArrayList() { "Star Wars Episode IV: A New Hope", "Star Wars Episode V: The Empire Strikes Back", }; //Schrijf jouw code hieronder //================================= //Onderstaande code niet aanpassen //================================= PrintMovies(starWarsFilms); } public static void PrintMovies(ArrayList films) { foreach (string film in films) { Console.WriteLine(film); } } } }
Je kunt zo vaak indienen als je wenst. Er wordt enkel rekening gehouden met je laatst ingediende oplossing.
Log in om je oplossingen te testen.