using System.Collections.Generic;
public static void Main()
IList<int> intList = new List<int>();
IList<string> strList = new List<string>();
Console.WriteLine(strList.Count);
IList<Student> studentList = new List<Student>();
studentList.Add(new Student());
studentList.Add(new Student());
studentList.Add(new Student());
Console.WriteLine(studentList.Count);