I am not sure what is the best way to word my question correctly in single line. But basically I have seen quite a few video tutorials now where the coder types really fast using some sort of shortcut to fill in the automatic text(prolly intellisense stuff) It looks very similar to Linux command line tab where you only type half of your text and when you hit tab it either fills in the gap or show you the remaining options. Hope that makes sense. Thanks
質問する
1431 次
2 に答える
8
Pressing Ctrl+Space completes the current variable/class you are typing.
Typing things like ctor
and then pressing the Tab key twice tells Visual Studio to insert a constructor for you. (Also works with for
for a for loop, cw
for a Console.WriteLine();
, etc.)
For a full list, please refer to the official reference from MSDN.
于 2013-03-19T21:56:27.777 に答える
2
I believe its Ctrl-Space
, which is pretty common among most IDE's
于 2013-03-19T21:54:15.060 に答える