是否可以搜索枚举类型值列表以查看 int 是否存在?

发布于 2024-10-28 08:20:23 字数 119 浏览 0 评论 0原文

假设我有一个枚举

public myEnum
{
   value1, value2

}

,如果我有一个整数,我可以看看它是否存在于 myEnum 中吗?

say i have an enum

public myEnum
{
   value1, value2

}

if I have an integer, can I see if it exists within myEnum?

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

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

发布评论

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

评论(1

讽刺将军 2024-11-04 08:20:23

使用Enum.IsDefined()。完整的定义是

public static bool IsDefined(
    Type enumType,
    Object value
)

示例用法:

public enum MyEnum { A = 1, B = 2 };

Enum.IsDefined(typeof(MyEnum), 1) --> true
Enum.IsDefined(typeof(MyEnum), 3) --> false

您可以在此 msdn 页面上找到更多信息。

Use Enum.IsDefined(). The full definition is

public static bool IsDefined(
    Type enumType,
    Object value
)

Example usage:

public enum MyEnum { A = 1, B = 2 };

Enum.IsDefined(typeof(MyEnum), 1) --> true
Enum.IsDefined(typeof(MyEnum), 3) --> false

You can find more information on this msdn page.

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