在 switch 语句中我们可以使用 C# 中的 enum
假设我们想使用 switch 语句和枚举来给出条件。我们可以这样做吗? 如果是,那么如何?
Suppose we want to give condition using switch statement with the use of enum. Can we do that?
If yes, then how?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
是的,效果很好。 第 17 课:枚举 文章提供了以下示例:
Yes, it works fine. The Lesson 17: Enums article offers this example:
看看
第 17 课:枚举
Have a look at
Lesson 17: Enums
是的,您可以在 switch 语句中使用枚举。
Ya,you can use enums in switch statement.