如何重置 VS 2008 中的智能感知设置?
我全新安装了 VS 2008 Standard,并使用 CodeRush 安装了 DevExpress DXPerience 2008!由于某种原因,我的智能感知决定半途而废。
我有:
class Person
{
public string FirstName { get; set; }
}
我可以输入:
Person p = new Person();
p.
... 并且智能感知不会显示 Person 的任何成员,除非我删除“.”并再次输入。然后它就会像我一直期望的那样工作。
这种情况在对象/项目/解决方案中经常发生。我敢打赌这是 VS 或 CodeRush!设置,但我想在尝试重新安装 CodeRush 之前排除 VS! (需要一段时间)。
I've got a fresh install of VS 2008 Standard and I've installed DevExpress DXPerience 2008 with CodeRush! and for some reason, my intellisense decided to half-work.
I have:
class Person
{
public string FirstName { get; set; }
}
I can type:
Person p = new Person();
p.
... and intellisense will show none of the members for Person, UNLESS I delete the '.' and type it again. Then it'll work as I always expect it.
This happens among objects/projects/solutions consistently. I'm betting that it's a VS or CodeRush! setting but I'd like to rule out VS before I try to re-install CodeRush! (takes a while).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请查看 Visual Studio 中的以下设置:
都激活了吗?如果没有,请这样做。
Please take a look at the following settings in your Visual Studio:
Are they all activated? If not, please do so.
你是对的,这是 CodeRush 设置。按照以下步骤访问 IntelliSense 选项页面:
在左侧的树视图中,导航到此文件夹:
兼容性
希望这有帮助。
You're correct, it's a CodeRush setting. Follow these steps to get to the IntelliSense options page:
In the tree view on the left, navigate to this folder:
Compatibility
Hope this helps.