gpt4 book ai didi

c# - 使用扩展方法访问方法的属性

转载 作者:太空狗 更新时间:2023-10-29 20:23:08 30 4
gpt4 key购买 nike

下面我有一个解决方案,可以使用扩展方法从字段中获取属性。现在我想用方法而不是字段做类似的事情。

public static MemberInfo GetMember<T, R>(this T instance, Expression<Func<T, R>> selector)
{
var member = selector.Body as MemberExpression;
return member?.Member;
}

public static T GetAttribute<T>(this MemberInfo meminfo) where T : Attribute
{
return meminfo.GetCustomAttributes(typeof(T)).FirstOrDefault() as T;
}

用法:

var attr = this.GetMember(x => x.AddButtonVisibility).GetAttribute<Test>(); 

所以在我的例子中,用法应该是这样的:

var attr = this.GetMethod(x => x.SomeMethod).GetAttribute<Test>();

这有可能吗?还是我必须尝试一些完全不同的东西?

最佳答案

您可以执行以下操作:

 public static MethodInfo GetMethod<T>(this T instance, Expression<Action<T>> selector)
{
var member = selector.Body as MethodCallExpression;
return member?.Method;
}

public static MethodInfo GetMethod<T, R>(this T instance, Expression<Func<T, R>> selector)
{
var member = selector.Body as MethodCallExpression;
return member?.Method;
}

注意你需要处理void方法不同,因为 Func<T, R>没有意义,你需要重载 Action<T> .

关于c# - 使用扩展方法访问方法的属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41807699/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com