Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
List<>オブジェクトをWP7ローカルデータベースに保存するには?
List<CheckBox> lcb = myListBox.Items.OfType<CheckBox>() .Where(c => c.IsChecked == true).ToList();
単一のチェックボックス項目またはすべての項目がチェックボックスであっても機能するため、OfType代わりに使用しました。CastOfType
OfType
Cast
1つでもチェックボックスがない場合Castはエラーになります。