Skip to content

Instantly share code, notes, and snippets.

@jaydonnell
Created September 15, 2011 17:20
Show Gist options
  • Save jaydonnell/1219863 to your computer and use it in GitHub Desktop.
Save jaydonnell/1219863 to your computer and use it in GitHub Desktop.
string[] cities = { "Boston", "Los Angeles",
"Seattle", "London", "Hyderabad" };
IEnumerable<string> filteredCities =
from city in cities
where city.StartsWith("L") && city.Length < 15
orderby city
select city;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment