zoukankan      html  css  js  c++  java
  • 访问类的private或internal成员[转载]

    ... that access modifiers like public, private and internal are enforced by the language compilers (C#, VB.NET) only and not on IL level?

    That means that you can invoke any private or internal member in any class, residing in any assembly, just by using Reflection.

    To invoke a private static method Calc from the internal class Calculations in the AssemblyWithPrivateMembers assembly that requires two parameters of type int and returns an int, you can write the following few lines of code.

      Assembly asm = Assembly.Load("AssemblyWithPrivateMembers");

      Type t = asm.GetType("AssemblyWithPrivateMembers.Calculations");

      object[] args = new object[] { 2, 4 };

      BindingFlags bindingFlags = BindingFlags.DeclaredOnly | BindingFlags.Static | BindingFlags.NonPublic | BindingFlags.InvokeMethod;

    int result = (int)(t.InvokeMember("Calc", bindingFlags, null, null, args));

    For you as a developer it means that you can use all non-public members you find by browsing the .NET framework base class library (using .NET Reflector for example).

    But: Please use this possibility with caution! There will always be a reason why a class or member is not declared public. Additionally you are never sure if the class or member will change in later versions of the assembly.
    Form:http://dotnetjunkies.com/WebLog/nenoloje/archive/2004/03/19/9490.aspx

  • 相关阅读:
    springboot启动后执行某些动作
    Virtualbox的nat网络
    xshell6
    day01 K8S
    Nginx的日志文件切割
    virtualbox磁盘空间大小调整
    装修柜子木台面
    mybatis 批量in 多个字段写法
    jenkins shell常用配置
    activiti工作流引擎数据库表结构
  • 原文地址:https://www.cnblogs.com/jiaruistone/p/1617335.html
Copyright © 2011-2022 走看看