Запрос Linq для консольного приложения
i have a code like public class Student { public int StudentID { get; set; } public string SName { get; set; } public List<string> Course; } static List<Student> students = new List<Student> { new Student {StudentID=1, SName="koundinya"}, new Student {StudentID=2, SName=...