zoukankan      html  css  js  c++  java
  • C#中访问私有成员--反射

    首先我必须承认访问一个类的私有成员不是什么好做法。大家也都知道私有成员在外部是不能被访问的。而一个类中会存在很多私有成员:如私有字段、私有属性、私有方法。对于私有成员访问,可以套用下面这种非常好的方式去解决。

    private string name;public string Name{ get { return name; } set { name = value; }}

        但是有时候,源代码是别人的,你就不能修改源代码,只提供给你dll。或者你去维护别人的代码,源代码却有丢失。这样的情况如果你想知道私有成员的值,甚至去想直接调用类里面的私有方法。那怎么办呢?其实在.net中访问私有成员不是很难,这篇文章提供几个简单的方法让你如愿以偿。

        为了让代码用起来优雅,使用扩展方法去实现。

       1、得到私有字段的值:

    public static T GetPrivateField<T>(this object instance, string fieldname)

    {

    BindingFlags flag = BindingFlags.Instance | BindingFlags.NonPublic;

    Type type = instance.GetType();

    FieldInfo field = type.GetField(fieldname, flag);

    return (T)field.GetValue(instance);

    }

    2、得到私有属性的值:

    public static T GetPrivateProperty<T>(this object instance, string propertyname)

    {

    BindingFlags flag = BindingFlags.Instance | BindingFlags.NonPublic;

    Type type = instance.GetType();

    PropertyInfo field = type.GetProperty(propertyname, flag);

    return (T)field.GetValue(instance, null);

    }

    3、设置私有成员的值:

    public static void SetPrivateField(this object instance, string fieldname, object value) 

        BindingFlags flag = BindingFlags.Instance | BindingFlags.NonPublic; 
        Type type = instance.GetType(); 
        FieldInfo field = type.GetField(fieldname, flag); 
        field.SetValue(instance, value); 

    4、设置私有属性的值: 
    public static void SetPrivateProperty(this object instance, string propertyname, object value) 

        BindingFlags flag = BindingFlags.Instance | BindingFlags.NonPublic; 
        Type type = instance.GetType(); 
        PropertyInfo field = type.GetProperty(propertyname, flag); 
        field.SetValue(instance, value, null); 

    5、调用私有方法:

    public static T CallPrivateMethod<T>(this object instance, string name, params object[] param)
    {
        BindingFlags flag = BindingFlags.Instance | BindingFlags.NonPublic;
        Type type = instance.GetType();
        MethodInfo method = type.GetMethod(name, flag);
        return (T)method.Invoke(instance, param);
    }

  • 相关阅读:
    idea中git分支的使用
    常用的分布式事务解决方案
    分布式事务解决方案总结
    IDEA中Git的更新、提交、还原方法
    (超详细)使用git命令行将本地仓库代码上传到github或gitlab远程仓库
    Git 安装及用法 github 代码发布 gitlab私有仓库的搭建
    主机ping不通虚拟机,但是虚拟机能ping通主机
    Compile Graphics Magick, Boost, Botan and QT with MinGW64 under Windows 7 64
    windows
    mingw-w64线程模型:posix vs win32(posix允许使用c++11的std:: thread,但要带一个winpthreads,可能需要额外dll)
  • 原文地址:https://www.cnblogs.com/marblemm/p/7093065.html
Copyright © 2011-2022 走看看