using System.Collections.Generic;
namespace ConsoleApplication1
public int ID { get; set; }
public string Name { get; set; }
public bool IsFeesSubmitted { get; set; }
public static void Main(string[] args)
List<Student> students = new List<Student>();
Console.WriteLine("List has one or more items");
Console.WriteLine("List has no items");