VS2010 在 IntelliSense 中显示父接口/类的摘要信息
我想知道是否有任何方法可以在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想要智能感知并且不想复制文档,只需使用该界面即可。
像 resharper 这样的工具可以让您在实现界面。干杯
Simply use the interface if you want intellisense and don't want to copy the documentation.
Some tool like resharper offer you to copy the documentation when implementing a interface. Cheers