在 Delphi Prism 中将 int 转换为 Enum
基本上与这个问题相同,但在 Delphi Prism 中:
我设法从字符串中做到这一点:
YourEnum := Enum.Parse(TypeOf(YourEnum), "mystr") as YourEnum
但我尝试了以下操作,并收到类型不匹配错误:
YourEnum := 3 as YourNum
任何想法将 int 转换为 Enum 的语法是什么?
Basically the same as this question, but in Delphi Prism:
I manage to do it from a string:
YourEnum := Enum.Parse(TypeOf(YourEnum), "mystr") as YourEnum
But I tried the following, and get a type mismatch error:
YourEnum := 3 as YourNum
Any ideas what the syntax is for converting int to Enum?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
@Robo,将 int 转换为 Enum 的语法是
或
参见此示例
@Robo , the sintax for convert an int to Enum is
or
see this sample