获取方法实现的属性

时间:2015-09-02 04:04:17

标签: c# .net visual-studio attributes custom-attributes

我在程序集中有一些方法(可能有几百个):

public void SelectDepartment(string deptName)
{
    Console.WriteLine(deptName);
}

我想阅读整个方法并以编程方式将其写入另一个文件(已为此操作设计了一个表单)。我认为属性可以完成这项工作,因此我创建了这样的自定义属性:

[method: customplugin]
public void SelectDepartment(string deptName)
{           
    Console.WriteLine(deptName);
}

但是内置功能无法读取方法的内容。有没有办法做到这一点?

0 个答案:

没有答案