例如:
假设有三个对象Model
,ModelParam
,ModelParamValue
我有这样一句话:
f(Model)
我希望IntelliSense能够显示ModelParam
和ModelParamValue
选项,因为我输入“p”就像这样
f(Modelp)
如何更改Visual Studio的设置以实现此目的?
另外,如果我输入Model
,那么IntelliSense窗口中会有三个选项,但如果我按下ESC,窗口就会消失,即使我输入“p”,窗口也不会回来。我该怎么解决这个问题?
我问这个的原因是这个功能在SQL Server 2008中可用,所以我想它只需要一些配置才能在VS中正常工作。
我在VS2012中使用C#编写程序。
答案 0 :(得分:1)
通过按键组合来调出intellisense:
CTRL + 空间
例如,您有以下代码段:
void testTest() {}
void testTast() {}
int main() {
testT //press ctrl + space after this and it will bring up the 2 possibilities
testTa //press ctrl + space after this and it will fill in testTast
testt //press ctrl + space after this and it will bring up the 2 possibilities
}
适用于Visual Studio 2010和Visual Studio 2012,很可能也适用于其他版本。