当前位置:  开发笔记 > 编程语言 > 正文

使用扩展方法访问方法的属性

如何解决《使用扩展方法访问方法的属性》经验,为你挑选了1个好方法。

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

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

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

用法:

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

所以在我的情况下,用法应该是这样的:

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

这有可能以任何方式或我必须尝试完全不同的东西吗?



1> InBetween..:

您可以执行以下操作:

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

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

请注意,您需要以void不同方式处理方法,因为Func没有意义,您需要重载Action.

推荐阅读
郑谊099_448
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有