using System.Collections.Generic;
public static void Main()
var applicants = new List<Applicant>()
new Applicant("Benjamin Jones", 384, 4),
new Applicant("Guther Freedman", 599, 3),
new Applicant("Astrid Goldman", 650, 1),
new Applicant("Rina Sanchez", 651, 2),
new Applicant("Emerald Georgia", 712, 1)
List<Applicant> score = new List<Applicant>() {712,651,650,599,384};
List<Applicant> sortedApplicant = score.Find(i=> i.Score == 651);
public string Name { get; set; }
public short Score { get; set; }
public short Submissions { get; set; }
public Applicant(string name, short score, short submissions)
Submissions = submissions;