January 2008 - Posts

0
Comments

LINQ - "Where" Extension Method by shahed

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...
Powered by Community Server (Commercial Edition), by Telligent Systems