1. 如何自动生成#region来组织代码?
2. 比如SuperMan: IFlyable. 在superMan class中,我们要实现IFlyable的接口函数。如何快速生成所有需要实现的接口函数,在SuperMan中?就是说如何瞬间添加:
#region IFlyable implementation.
public void func1()
{}
public void func2()
{}
#region
选中要实现的接口,右击,实现接口。
推荐一本电子书:http://www.cnblogs.com/wuchang/archive/2007/08/13/854520.html
你没发现在敲了以下类似代码之后,在 IMyInterface 的 I 下面有一个小东西可以展开菜单吗?
public class MyClass : IMyInterface
光标移到要实现的接口名称上alt+shift+f10.