H8b Collections (Non-generic) - Opwarmen 0 - ArrayList Declareren en initialiseren

Sign in to test your solution.
using System; using System.Collections; namespace Collections { public class Program { public static void Main(string[] args) { //Schrijf jouw code hieronder //================================= //Onderstaande code niet aanpassen //================================= PrintMovies(starWarsFilms); } public static void PrintMovies(ArrayList films) { foreach (string film in films) { Console.WriteLine(film); } } } }
You can submit as many times as you like. Only your latest submission will be taken into account.
Sign in to test your solution.