在 SharpDevelop 4.1 中找不到界面代码生成选项
这似乎是一个愚蠢的问题,但我似乎找不到在最新的 SharpDevelop 版本中生成接口代码的选项。当我搜索该网站时,我得到了很多关于 Alt+Ins 和工具菜单的提及,但这些选项似乎在最新版本中不可用。我可以右键单击并提取接口,但似乎没有任何选项可以将它们存根。我错过了什么?
This seems like a stupid issue, but I can't seem to find an option to generate interface code with in the newest SharpDevelop build. When I search the site I get a lot of mentions of Alt+Ins and the Tools menu but those options do not appear to be available in the newest build. I can right click and extract interfaces but there doesn't seem to be any option to stub them in. What am I missing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 SharpDevelop 4.1 中,将鼠标光标放在类名称或接口名称上。然后,您将看到文本编辑器左侧出现一个图标。
然后按 Ctrl+T 显示弹出菜单。
这将为您提供可以实现的接口列表。使用向上和向下箭头选择适当的接口,然后按 Enter 键。然后将为该接口生成代码。
每当您看到此图标时,您就可以生成代码。有关此功能的更多信息,请查看 新的生产力功能博客文章,作者:Martin Konicek。
In SharpDevelop 4.1 put the mouse cursor on the class name or on the interface name. You will then see an icon appear on the left hand side of the text editor.
Then press Ctrl+T to display a pop-up menu.
This will give you a list of interfaces you can implement. Select the appropriate interface using the up and down arrows and press the Enter key. Then code will be generated for that interface.
Whenever you see this icon you can generate code. For more information on this feature take a look at the New productivity features blog post by Martin Konicek.