在使用C#关键字时,是否有来自Microsoft或第三方提供工具提示的工具?
也许它已经在VS中而且只需要打开它?
类似的东西:
将鼠标悬停在'私人'上关键字将显示工具提示:
The private keyword is a member access modifier.
Private members are accessible only within the body of the class
or the struct in which they are declared.
这样的事情。
答案 0 :(得分:0)
我不知道任何第三方工具提示扩展程序,但您可以使用 Peek Help 。它不是工具提示,但它是查看文档的一种方法。
在您的示例中,右键点击private
,然后点击 Peek帮助。或者,您可以使用键盘快捷键Alt+F1
。