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

  • 相关阅读:
    poj1228 Grandpa's Estate
    poj1113 Wall
    poj2826 An Easy Problem?!
    poj1269 Intersecting Lines
    poj3304 Segments
    BZOJ3832Rally题解
    BZOJ2802Warehouse Store题解
    李超树详解
    BZOJ4241历史研究题解
    洛谷2050 BZOJ2897美食节题解
  • 原文地址:https://www.cnblogs.com/jiaruistone/p/1617335.html
Copyright © 2011-2022 走看看