说我有一个界面:
public interface ISomeInterface
{
void Foo();
int Bar { get; }
}
在我班上:
public class SomeClass : ISomeInterface
{
//Is there a way to automatically generate the below "templates"
//through pressing a button or a shortcut?
public void Foo()
{
}
public int Bar
{
get
{
}
}
}
通常情况下我会输入它,但是对于接口有点长的情况,如果我必须在许多不同的类中进行操作,它会有点繁琐。