有没有办法在Monodevelop Unity上自动完成接口实现模板?

时间:2016-12-21 07:20:19

标签: c# unity3d monodevelop

说我有一个界面:

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
    {

    }
  }
}

通常情况下我会输入它,但是对于接口有点长的情况,如果我必须在许多不同的类中进行操作,它会有点繁琐。

1 个答案:

答案 0 :(得分:3)

是的,只需右键点击ISomeInterface

enter image description here