monodevelop 快捷方式和自动代码
在使用 Eclipse 几年后,我正在使用 MonoDevelop。
在 Eclipse 中,当我创建一个类时,Eclipse 会自动从扩展类或实现的接口生成所有存根方法。
我如何才能在 monodevelop 获得同样的工作?
谢谢
i'm using MonoDevelop after used Eclipse for several years.
In eclipse when i create a class, eclipse auto-generates all stub methods from extended class or implemented interface.
How i can obtain same job in monodevelop?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
作为替代方案,您可以按
Alt+Insert
调出代码生成快速菜单,其中包含实现接口方法(以及其他功能)的选项。请注意,您需要将字符光标放在类的主体中,该类实现您要从中创建存根方法的接口。
As an alternative, you can press
Alt+Insert
to bring up a code generation quick-menu with the option of implementing interface methods (among other features).Note that you need to have the character cursor in the body of the class, that implements the interface that you want to create stub methods from.
使用类声明中基类/接口名称的上下文菜单。
Use the context menu on the base class/interface name in the class declaration.