如何使用反射获取方法或类的文档


var className = typeof(Console);
var methodInfo = className.GetMethod("WriteLine",new [] { typeof(string) });

我得到了一个用于 Writeline 方法的 methodInfo 对象,现在如果我们看到该方法的定义,它看起来像这样。

//
        // Summary:
        //     Writes the specified string value, followed by the current line terminator,
        //     to the standard output stream.
        //
        // Parameters:
        //   value:
        //     The value to write.
        //
        // Exceptions:
        //   System.IO.IOException:
        //     An I/O error occurred.
        public static void WriteLine(string value);

我想要的是获取一个 perticular 方法的注释。 ,有什么方法可以使用反射来实现这一点? 或任何其他可能的方法?

注释不会由编译器编译成结果可执行文件/dll(这是注释的重点(,因此它们无法使用反射,因为它们根本不存在于原始源代码之外。

你对此无能为力,数据只是不存在。

相关内容

  • 没有找到相关文章

最新更新