programming-c-sharpCreate arraylistOn this pageCreate arraylistCreate an ArrayList and add three elements. using System.Collections;class Program{ static void Main() { ArrayList list = new ArrayList(); list.Add("One"); list.Add("Two"); list.Add("Three"); }} Related Files https://github.com/seafooood/andrew-seaford.co.uk/tree/main/docs/programming-c-sharp/create-arraylist C# Related Articles Adding days to a DateTime in C# C# Open File Dialog Create a autocompleting textbox using C# C# class properties C# type checking with the is statement