开发者

VS2010 to show summary info from parent interfaces/class in IntelliSense

开发者 https://www.devze.com 2023-02-27 15:52 出处:网络
I want to know if there is any method to show summary info from parent interfaces/class in 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 m开发者_高级运维e very inconvenient.

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


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

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号