VS2010 在 IntelliSense 中显示父接口/类的摘要信息

发布于 2024-11-02 16:04:55 字数 510 浏览 0 评论 0原文

我想知道是否有任何方法可以在 IntelliSense 中显示父接口/类的摘要信息。

比方说,我有一个接口 IMyInterface 和一个类 MyClass

public interface IMyInterface
{
    ///<summary>
    /// This is just a testing method
    ///</summary>
    void MyMethod();
}

public class MyClass : IMyInterface
{
    public void MyMethod() { /* do nothing */ }
}

我面临的问题是对于每个方法,我需要从父接口或抽象类复制摘要标签 手动,以便我希望在使用 MyClass 时在 IntelliSense 中显示信息。这让我很不方便。

所以我正在寻求帮助......谢谢!

I want to know if there is any method to show summary info from parent interfaces/class in IntelliSense.

Let's say, I have an interface IMyInterface and a class MyClass

public interface IMyInterface
{
    ///<summary>
    /// This is just a testing method
    ///</summary>
    void MyMethod();
}

public class MyClass : IMyInterface
{
    public void MyMethod() { /* do nothing */ }
}

The problem I facing is for every method, I need to copy the summary tags from parent interfaces or abstract class manually in order that I want to have information show in IntelliSense when I was using MyClass. That makes me very inconvenient.

So I am seeking help...... Thanks!

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

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

发布评论

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

评论(1

对你而言 2024-11-09 16:04:55

如果您想要智能感知并且不想复制文档,只需使用该界面即可。

IMyInterface instance = new MyClass();
instance.MyMethod(); // shows intellisense

resharper 这样的工具可以让您在实现界面。干杯

Simply use the interface if you want intellisense and don't want to copy the documentation.

IMyInterface instance = new MyClass();
instance.MyMethod(); // shows intellisense

Some tool like resharper offer you to copy the documentation when implementing a interface. Cheers

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