在 VisualStudio 2010 中,当我有这样的方法(带有n个参数)时,我想创建键盘快捷键
public void MyMethod(type Parameter1, type Parameter2,..., type ParamenterN){
_object.MyMethod(type Parameter1, type Parameter2,..., type ParamenterN);
}
和MyMethod就像这样
public void MyMethod(type Parameter1, type Parameter2,..., type ParamenterN){
// Some code
}
方法名称/类型参数对于所调用的方法是相同的,当我写_object时,自动完成输入有快捷方式 .MyMethod(