有什么方法可以检查类型是否是枚举类型?

发布于 2024-10-14 01:00:33 字数 304 浏览 2 评论 0原文

有人给了我一个t型。

我想知道该类型是否是枚举。

public bool IsEnumeration(Type t)
{
    // Mystery Code.
    throw new NotImplementedException();
}

public void IsEnumerationChecker()
{
    Assert.IsTrue(IsEnumeration(typeof(Color)));
    Assert.IsFalse(IsEnumeration(typeof(float)));
}

Somebody gives me a type t.

I'd like to know if that type is an enumeration or not.

public bool IsEnumeration(Type t)
{
    // Mystery Code.
    throw new NotImplementedException();
}

public void IsEnumerationChecker()
{
    Assert.IsTrue(IsEnumeration(typeof(Color)));
    Assert.IsFalse(IsEnumeration(typeof(float)));
}

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

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

发布评论

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

评论(2

请止步禁区 2024-10-21 01:00:33

您还可以使用属性 IsEnum 进行检查类型

Type t = typeof(DayOfWeek);
bool isEnum = t.IsEnum;

You can also check by using property IsEnum on Type:

Type t = typeof(DayOfWeek);
bool isEnum = t.IsEnum;
挖个坑埋了你 2024-10-21 01:00:33

有多种方法可以实现此目的:

return typeof(Enum).IsAssignableFrom(t) && t != typeof(Enum);

return typeof(Enum).IsAssignableFrom(t) && t.IsValueType;

或(现在我已经看到 检查 IsValueType 时存在

return t.IsEnum;

显然后者是最好的方法,但前两种方法会给您有关如何处理类似情况的提示。

There are various ways you can achieve this:

return typeof(Enum).IsAssignableFrom(t) && t != typeof(Enum);

or

return typeof(Enum).IsAssignableFrom(t) && t.IsValueType;

or (now that I've seen it exists while checking IsValueType)

return t.IsEnum;

Obviously the latter is the best approach, but the first two will give you hints about how to handle similar situations.

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