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.
如何在 WP7 本地数据库中存储 List<> 对象?
List<CheckBox> lcb = myListBox.Items.OfType<CheckBox>() .Where(c => c.IsChecked == true).ToList();
我使用OfType而不是Cast因为OfType即使有一个复选框项目或所有项目都是复选框,它也会起作用。
OfType
Cast
Cast如果即使单个项目不是复选框,它也会出错。