将 Enum 类型转换为 IList

发布于 2024-10-02 03:20:41 字数 229 浏览 3 评论 0原文


如何将 enum 转换为 IList
假设您要读取 FormWindowState 枚举中的所有元素,并返回包含 NormalMinimizedIList最大化

Hi
How can I convert an enum to IList?
Suppose you want to read all elements in FormWindowState enum, and return an IList<FormWindowState> containing Normal, Minimized and Maximized

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

演出会有结束 2024-10-09 03:20:41

使用 Enum.GetValues()。例如:

var list = (IList<FormWindowState>) Enum.GetValues(typeof(FormWindowState));

它实际上返回一个 FormWindowState[] 但无论如何都适当地实现了 IList

如果您使用枚举进行了大量工作并且想要一种更类型安全的方法,您可能需要查看我的 Unconstrained Melody 项目也是如此。

Use Enum.GetValues(). For example:

var list = (IList<FormWindowState>) Enum.GetValues(typeof(FormWindowState));

It actually returns a FormWindowState[] but that implements IList<T> appropriately anyway.

If you're doing a lot of work with enums and you want a more type-safe approach, you may want to look at my Unconstrained Melody project too.

掀纱窥君容 2024-10-09 03:20:41
IList<FormWindowState> myList;//instantiate it with a concrete collection.


myList.Add(FormWindowsState.Normal);
myList.Add(FormWindowsState.Minimized);
myList.Add(FormWindowsState.Maximized);

这仅适用于这种情况,即您只有 3 个枚举成员。否则使用 Jon Skeet 的解决方案。

IList<FormWindowState> myList;//instantiate it with a concrete collection.


myList.Add(FormWindowsState.Normal);
myList.Add(FormWindowsState.Minimized);
myList.Add(FormWindowsState.Maximized);

This is just for this case, when you have only 3 enum members. Otherwise use the solution of Jon Skeet.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文