0
は、私はインターフェイスを持っていると言う:私のクラスでMonodevelop Unityでインターフェイス実装テンプレートをオートコンプリートする方法はありますか?
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
{
}
}
}
通常、私はちょうどそれを入力しますが、例のためのインターフェースはやや長く、私はそれをしなければならない場合はどこ多くの異なるクラスにまたがって、それは面倒なことが起こります。
作品完璧、ありがとう! – Lincoln