1
如何從函數對象獲取自定義屬性?從函數獲取屬性<T>
public static void Main(string[] args) {
Func<object> fun =() => Foo();
//fun. Get Foo Custom Attribute
}
[CustomAttrib]
public static object Foo() {
return new object();
}
或[this](http://stackoverflow.com/questions/3467765/get-method-details-using-reflection-and-decorated-attribute) –
重複是不正確的 - 這是相當困難的,因爲方法在'Function'裏面。 – Glorfindel
您是否需要在不調用委託並檢查檢索到的對象的情況下執行此操作? –