Can I make Visual Studio's code completion window more like Eclipse (Java)?

天大地大妈咪最大 提交于 2019-12-11 03:58:58

问题


Is it possible to make Visual Studio 2010's code completion window more like that of Eclipse (Java)?

In particular, I'd love the code completion window to give me a variable's type, and a method's return type and expected parameters, without needing to hover the highlight over that particular variable/method. Here's Eclipse's:

VS's code completion's little icons that indicate if something is a property, method etc are useful, but they just aren't enough.


回答1:


Unfortunately, there's no built-in way to do this. Visual Studio offers only very limited options related to customizing its Intellisense display.

You'll have to turn to third-party solutions or add-ins, or settle down to write your own using one of the existing options as a guide. Here are a few that can be found around the web:

  • Visual Studio Intellisense Presenter (looks like it might be very close to what you're looking for)
  • CSharpIntellisensePresenter
  • Visual Assist X (commercial software with 30-day free trial)


来源:https://stackoverflow.com/questions/4690233/can-i-make-visual-studios-code-completion-window-more-like-eclipse-java

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!