以编程方式检索函数头信息

时间:2010-10-08 09:59:48

标签: c#

我有一个GetMainWindowAE函数,它包含如下所示的标题信息。

    /// <summary>
    /// Gets the main window automation element.
    /// </summary>
    /// <returns></returns>
    public static AutomationElement GetMainWindowAE()
    {
        //Return automation element using window handle of that process
        return AutomationElement.FromHandle(AppContext.ActiveApplication.Process.MainWindowHandle);
    }

如何使用.net?

以编程方式获取带有注释的标题中的数据

1 个答案:

答案 0 :(得分:0)

您可以使用Reflection实现此目的。方法的 MethodInfo 属性包含与方法关联的XML注释(AKA标题信息)。

有关更多信息和代码示例,请参阅this blog entry