string[] MyArray = new string[] { "A", "B" }; MyArray = new List<string>(MyArray) { "C" }.ToArray(); //MyArray = ["A", "B", "C"] raadgames :)