class System.String
Represents text as a serIEs of Unicode characters.
当我将鼠标悬停在其中一个课程上时,它只是说:
class namespace.Widget
我已经尝试了我发现的两个明显的例子:
/// <summary>/// This summary does not work,I kNow it's for HTML documenting tools but thought it was worth a shot./// </summary>
和:
// Summary:// This is what is in some of the base librarIEs,and does not work as well.
那么,如何在鼠标悬停d出窗口中添加摘要?
解决方法 我不明白为什么你的第一次尝试不起作用.这是< summary>评论标签提供您正在谈论的’工具提示’…/// <summary>/// This text should automatically show up as the summary when hovering over/// an instance of this class in VS/// </summary>public class MyClass{ public MyClass() {} }public class MyClass2{ public MyClass() { //hovering over 'something' below in VS should provIDe the summary tooltip... MyClass something = new MyClass(); }}
如果您想要帮助自动化您的一些评论,请尝试免费的GhostDoc.到目前为止最好的免费VS插件之一..
总结以上是内存溢出为你收集整理的c# – 如何添加鼠标悬停摘要全部内容,希望文章能够帮你解决c# – 如何添加鼠标悬停摘要所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)