1

例如:
假设有三个对象,Model, ModelParam,ModelParamValue
而我有这样一行:

f(Model)

我希望 IntelliSense 在我这样输入“p” 时显示ModelParam和选项ModelParamValue

f(Modelp)

我应该如何更改 Visual Studio 的设置来完成此操作?
另外,如果我输入Model,IntelliSense 窗口中会有三个选项,但是如果我按 ESC,窗口就会消失,即使我输入“p”,窗口也不会回来。我应该如何解决这个问题?

我问这个的原因是这个功能在 SQL Server 2008 中可用,所以我想它只需要一些配置就可以在 VS 中正常工作。

我在 VS2012 中使用 C# 编写程序。

4

1 回答 1

1

按组合键调出智能感知:

ctrl+space

例如,当您有以下代码段时:

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 中都可以使用,并且很可能也可以在其他版本中使用。

于 2013-08-09T14:17:02.293 回答