Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我只是想到了 Visual Studio 的一个非常酷的功能,我想知道它是否已经存在。当您在方法之后执行一个左括号时,这就像按 Ctrl+tab 一样,自动用方法中调用的任何参数填充传递的参数......假设您以相同的方式命名事物。那存在吗?
例如,如果我有一个方法:
public static void Foo(int a, int b) { }
然后在另一个位置输入:
Foo(
我希望看到它填充:
Foo(a, b)
按下一些键盘快捷键后。
Resharper 中存在类似的功能。Alt+ Enter,然后选择Generate argument stubs。但它会用默认值填充它foo.Bar(0, 0);
Generate argument stubs
foo.Bar(0, 0);