1

例:
3 つのオブジェクトがあるとModelModelParamますModelParamValue

f(Model)

このように「p」と入力 すると、IntelliSense にオプションModelParamとオプションが表示されます。ModelParamValue

f(Modelp)

これを実現するには、Visual Studio の設定をどのように変更すればよいですか?
また、 と入力Modelすると IntelliSense ウィンドウに 3 つのオプションが表示されるのですが、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 に答える