将枚举声明为类成员
C# 中是否有任何机制允许在同一行中定义和声明 Enum 变量,如下所示:
public class ClassWithEnumMember
{
public Enum Type { TYPE1, TYPE2, TYPE3 } = TYPE1;
}
Is there any mechanism in C# that allows one to define and declare an Enum variable in the same line like so:
public class ClassWithEnumMember
{
public Enum Type { TYPE1, TYPE2, TYPE3 } = TYPE1;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
全部整齐地排在一条线上!
All neatly on one line!
最简单的答案是否定的。为什么不把它做成两行呢?
This simplest answer is no. Why not just make it two lines?