下拉列表到枚举
我想将所选值的字符串输出从下拉列表转换为枚举。 最好的方法是什么?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您正在谈论 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
如果您在下拉列表中存储字符串,则还可以使用开关 块。您是否考虑过用枚举值填充下拉列表?请参阅此处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.
您可以将其包装到扩展方法中以使调用更容易:
然后调用
获取枚举
You can wrap this into an extension method to make the call easier:
Then call
To get the enum