ジェネリクスの場合のFindの実装パターンの覚書
List<AmedasLocation> ameLocation で、Find したい場合の例
// メニューと一致するAmedasLocation情報を検索
AmedasLocation al = ameLocation.Find(
delegate(AmedasLocation aloc)
{
return aloc.Text == ((MenuItem)sender).Text;
}
);
AmedasLocation al = ameLocation.Find(
delegate(AmedasLocation aloc)
{
return aloc.Text == ((MenuItem)sender).Text;
}
);
結構使いそうだけど、すぐ忘れそうなのでメモ。