在枚举中使用 static
是否可以在枚举中使用“静态”:
private enum pdfMode
{
generate,
static
}
显然“静态”是一个关键字。
如果我有一个 pdfMode 就好了,它确实在应用程序中被称为“静态”。
Is it possible to use 'static' within an enum as such:
private enum pdfMode
{
generate,
static
}
Obviously 'static' is a key word.
It would be nice as I have a pdfMode which is indeed referred to within the app as 'static'.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
要使用关键字作为标识符,请使用 @ 符号:
但这里建议使用 Pascal 大小写。
请参阅枚举类型命名指南:
To use a keyword as an identifier use the @ symbol:
But using Pascal case is advisable here.
See the Enumeration Type Naming Guidelines:
一种可能性是在枚举内使用
Generate
和Static
。无论如何,IMO 大写字母在那里看起来最好。One possibility is to use
Generate
andStatic
inside the enum. IMO uppercase looks best there anyway.您可以使用
@
转义关键字,如下所示:You can escape the keyword using
@
, like this:以免与
so as not it conflict with