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.
我试图CheckedListBox.CheckedItems成为一个 StringList。但我不知道如何得到它。我正在尝试使用 LINQ 将其作为单列。我在 .Net-C# 方面的经验不足,无法做到这一点。有人可以说怎么做吗?
CheckedListBox.CheckedItems
注意:我使用的是 .Net-4.0。
如果您存储在这些项目中的值是字符串:
List<string> items = chk.CheckedItems.Cast<string>().ToList();
如果它们是某种自定义类型,您可以使用该类型:
List<SomeTypeUsedForTheItems> items = chk.CheckedItems.Cast<SomeTypeUsedForTheItems>().ToList();