using System.Collections.Generic;
public static void Main()
object[] objs = new object[3];
string[] strs = new string[]{"a", "b", "c"};
List<object> objects = new List<object>();
List<string> strings = new List<string>{"a", "b", "c"};
Console.WriteLine("Hello World");