在 VS2010 中,如何在不先输入枚举类型的情况下自动完成 VB.NET 枚举值?
例如,在 VS2008 中,您可以编写
dim enumValue as MyEnum
enumValue =
..,然后只要输入 =
,您就会获得 MyEnum
的可能值列表。
使用 VS2010,您必须
dim enumValue as MyEnum
enumValue = MyEnum.
在输入最后的 时获取列表之前输入 ...。
这会导致更多的输入,并且似乎是一个倒退步骤...我有一个选择吗丢失的? (我在“基本”下的文本编辑器选项中选中了“自动列出成员”)。
In VS2008, you could write, for instance,
dim enumValue as MyEnum
enumValue =
.. and then as soon as you typed the =
, you'd get a list of possible values of MyEnum
.
With VS2010, you have to type
dim enumValue as MyEnum
enumValue = MyEnum.
... before getting the list on typing the final .
This makes for a lot more typing and seems to be a retrograde step ... is there an option I'm missing? (I have 'Auto List members checked in the Text Editor options under 'Basic').
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,你不是第一个对此感到恼火的人。根据此 反馈,此问题似乎可能会在 SP1 中得到修复项目。
Yes, you're not the first to be annoyed by this. This looks to be likely to get fixed in SP1 according to this feedback item.