C#
- 10 ответов
- 0 вопросов
15
Вклад в тег
public void MainMethod()
{
Func<string> method = MyMethod;
var methodName = method.GetMethodInfo().Name;
var type = method.Target.GetType();
var attrs = type.GetMethod(methodName).GetCustomAttributes(typeof(MyAttribute), true);
}
public void MainMethod()
{
var method = typeof(myclass).GetMethod("MyMethod");
var attrs = method.GetCustomAttributes(typeof(MyAttribute), true);
}