在 C# 中自动生成接口实现?

发布于 2024-09-13 21:58:48 字数 98 浏览 6 评论 0原文

我知道这很懒,但是 Visual C# 2010 Express 有什么方法可以自动生成接口实现吗? (我的意思不是在运行时而是在设计时,就像代码片段一样)。也许使用第三方实用程序?

I know this is quite lazy but, is there any way on Visual C# 2010 Express to auto-generate an interface implementation? (I don't mean at runtime but at design time, like a code snippet). Perhaps with a third party utility?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

陌上青苔 2024-09-20 21:58:48

我对 Express 不太熟悉,不知道他们是否删除了此功能,但您应该能够右键单击您的 public class MyClass : MyInterface 语句并选择“Implement Inteface”。

如果在 Express 中删除了此功能,您始终可以使用 Resharper 来实现此功能。

I'm not familiar with Express enough to know if they removed this feature, but you should just be able to right-click your public class MyClass : MyInterface statement and choose "Implement Inteface".

If this is removed in Express, you can always use Resharper for this feature.

烟燃烟灭 2024-09-20 21:58:48

右键单击接口名称,您应该会看到一个菜单选项“实现接口”或类似的内容。

将光标放在接口名称上时,您还可以按 CTRL + . 来获取相同的上下文菜单和选项。

Right click on the interface name, you should see a menu option "Implement Interface" or along those lines.

With the cursor on the interface name, you can also press CTRL + . to get the same context menu and options.

如梦初醒的夏天 2024-09-20 21:58:48

在 Microsoft Visual Basic 2010 Express 中,我只需将光标放在 Implements 行的末尾并按 Enter 键 - 然后就会自动生成存根,

Public Class Class1
  Implements IMyInterface1

将光标移动到单词 IMyInterface1 的末尾并按 Enter 键

In Microsoft Visual Basic 2010 Express, I just put the cursor to the end of the Implements line and press Enter - then the stubs are generated automatically

Public Class Class1
  Implements IMyInterface1

move the cursor to the end of the word IMyInterface1 and press Enter

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文