Skip to content

Instantly share code, notes, and snippets.

@peyangu
Created April 11, 2017 12:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save peyangu/6f46b9ab5efe1a69950981a174fd4f92 to your computer and use it in GitHub Desktop.
Save peyangu/6f46b9ab5efe1a69950981a174fd4f92 to your computer and use it in GitHub Desktop.
Whereメソッド
var person2b = personList.Where(p => p.Name == "とぅーびー").ToList();
foreach (Person p in person2b)
{
Console.WriteLine(p.Name + " : " + p.Age);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment