如何以编程方式提取由智能感知作为提示显示的类型描述
当我键入一些类(例如 Console)时,然后按 ctrl+space 和智能感知显示提示“类 System.Console 代表标准输入、输出和错误流......” 如何以编程方式获取此文本。谷歌搜不到,可能是我太笨了。 谢谢。
When I type some Class, e.g. Console, then press ctrl+space and intellisense show hint "Class System.Console Represents standart input, output and error streams...."
How programmatically get this text. Can't find in google, may be I'm stupid noob.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你不能。这是由 IntelliSense 解析的文档字符串,运行时不存在于 exe 或 dll 文件中。
You can't. This is a documentation string parsed by IntelliSense and does not exist in the exe or dll file at runtime.
您可以通过反射获得一些信息。就像 MethodInfo 显示有关方法的信息一样。
You get some of that info through Reflection. Like MethodInfo that shows the information about a method.
如果您知道 .xml 文件的位置,则可以使用文档解析该文件。
编辑:如果您想从 .NET 类获取文档,您可以在 C:\Windows\Microsoft.NET\Framework 中查看文件夹,并找到带有 xml 文档的 .xml 文件。
You can parse .xml file with documentation if you know where it's located.
EDIT: If you'd like to get documentation from .NET classes, you can see folders in
C:\Windows\Microsoft.NET\Framework
and find there files .xml with xml-documentation.