Here is simple LINQ example where I have used Extension methods "Where", to select the participants whose score is greater than 80.
var participants =Competition.GetParticipants().Where(participant=> participant.Score > 80).OrderByDescending(participant