是否可以通过反射获取程序集的注释?

发布于 2024-10-20 01:22:17 字数 50 浏览 2 评论 0原文

我想知道是否有一种方法可以通过反射访问类上的注释,或者它们是否完全从二进制文件中删除。

I would like to know if there is a way to access comments on a class through Reflection or if they are completely stripped from the binaries.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(4

我们的影子 2024-10-27 01:22:17

不。注释被编译器删除 - 它们不存在于二进制文件中,因此无法将它们恢复。

No. Comments are stripped by the compiler - they're not present in the binaries, so there's no way to get them back.

清泪尽 2024-10-27 01:22:17

编译代码时,注释将被忽略。

这意味着您无法让它们“回来”,因为它们从一开始就不存在。

Comments are ignored when code is compiled.

This means you can't get them "back" as they were never there in the first place.

且行且努力 2024-10-27 01:22:17

当代码被编译器编译时,注释将被忽略。

但是您可以通过创建自己的用户定义的属性类来传递属性中的信息。

Comments are ignored when code get complied by compiler.

But you can pass information in the Attributes by creating your own user defined attribute class.

谁对谁错谁最难过 2024-10-27 01:22:17

注释无法从二进制文件中获得,但可以通过 XML 获得。请参阅这个答案

Comments are not available from the binaries, but they are via XML. See this SO answer.

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