下拉列表到枚举

发布于 2024-11-01 01:41:22 字数 40 浏览 1 评论 0原文

我想将所选值的字符串输出从下拉列表转换为枚举。 最好的方法是什么?

I want to cast the string output of the selected value from dropdown to an enum.
What is the best way to do it?

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

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

发布评论

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

评论(3

迷离° 2024-11-08 01:41:23

如果您正在谈论 C#(只是猜测)->

Enum.Parse(...)

编辑:
以下是 MSDN 文档: http://msdn.microsoft.com/en-us /library/essfb559.aspx

If you are talking about C# (just a guess) ->

Enum.Parse(...)

EDIT:
Here are the MSDN docs: http://msdn.microsoft.com/en-us/library/essfb559.aspx

心不设防 2024-11-08 01:41:23

如果您在下拉列表中存储字符串,则还可以使用开关 块。您是否考虑过用枚举值填充下拉列表?请参阅此处Enum.GetValues

If you're storing strings in the dropdown, than you can also use a switch block. Have you considered populated the dropdown with the enum values? See here Enum.GetValues.

用心笑 2024-11-08 01:41:22

您可以将其包装到扩展方法中以使调用更容易:

public static T ToEnum<T>(this string value) {

    if (string.IsNullOrWhiteSpace(value)) {
        throw new ArgumentNullException("Cannot convert null or empty string to an enum");
    }

    // Get enum from the built-in Parse method
    return (T)Enum.Parse(typeof(T), value, true);

}

然后调用

myValue.ToEnum<EnumNameHere>();

获取枚举

You can wrap this into an extension method to make the call easier:

public static T ToEnum<T>(this string value) {

    if (string.IsNullOrWhiteSpace(value)) {
        throw new ArgumentNullException("Cannot convert null or empty string to an enum");
    }

    // Get enum from the built-in Parse method
    return (T)Enum.Parse(typeof(T), value, true);

}

Then call

myValue.ToEnum<EnumNameHere>();

To get the enum

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