如何以编程方式提取由智能感知作为提示显示的类型描述

发布于 2024-09-04 21:10:07 字数 122 浏览 4 评论 0原文

当我键入一些类(例如 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

胡大本事 2024-09-11 21:10:07

你不能。这是由 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.

心清如水 2024-09-11 21:10:07

您可以通过反射获得一些信息。就像 MethodInfo 显示有关方法的信息一样。

You get some of that info through Reflection. Like MethodInfo that shows the information about a method.

浅唱ヾ落雨殇 2024-09-11 21:10:07

如果您知道 .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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文