An Example of Collection Initialization
using System.Collections.Generic; using System; public class MainClass { public static void Main() { List<string> presidents = new List<string> { "AAAA", "BBBBBB", "CCCCCCCC" }; foreach (string president in presidents) { Console.WriteLine(president); } } }