zoukankan      html  css  js  c++  java
  • internal 访问级别 [c#]

    internal加在类的前面,这样一来只有同一个assembly的文件间才可以引用。internal常见用途就是基于组件的开发,方便组件间通讯,又不会将结构暴露给外界。

    例程里面,assembly1定义的BaseClass是一个internal类,在输出成为dll以后,assembly2过来引用它,这个时侯再来想引用internal的class就不行了。

    The internal keyword is an access modifier for types and type members. Internal members are accessible only within files in the same assembly. For more information on assemblies, see Components and Assemblies.

    A common use of internal access is in component-based development because it enables a group of components to cooperate in a private manner without being exposed to the rest of the application code. For example, a framework for building graphical user interfaces could provide Control and Form classes that cooperate using members with internal access. Since these members are internal, they are not exposed to code that is using the framework.

    It is an error to reference a member with internal access outside the assembly within which it was defined. Caution An internal virtual method can be overridden in some languages, such as textual Microsoft intermediate language (MSIL) using Ilasm.exe, even though it cannot be overridden using C#.

    For a comparison of internal with the other access modifiers, see Accessibility Levels.

    Example

    This example contains two files, Assembly1.cs and Assembly2.cs. The first file contains an internal base class, BaseClass. In the second file, an attempt to access the member of the base class will produce an error.

    • File Assembly1.cs:
    // Assembly1.cs
    // compile with: /target:library
    internal class BaseClass 
    {
       public static int IntM = 0;
    }
    

    -File Assembly2.cs

    // Assembly2.cs
    // compile with: /reference:Assembly1.dll
    // CS0122 expected
    class TestAccess 
    {
       public static void Main() 
       {
          BaseClass myBase = new BaseClass();   // error, BaseClass not visible outside assembly
       }
    }
    
  • 相关阅读:
    wp8模拟器中使用电脑键盘和模拟器的版本解释
    程序员如何正确的评估自己的薪资
    本地资源之绑定页面的标题和增加软件的语言支持
    C#导出数据的EXCEL模板设计
    程序员高效编程的14点建议
    使用StaticResource给控件定义公共的样式和属性来写界面XAML
    程序员什么时候该考虑辞职
    我的第一个wp8小程序
    检测CPU是否支持虚拟化
    所有经历都是一种恩赐
  • 原文地址:https://www.cnblogs.com/SiumingLearning/p/4375997.html
Copyright © 2011-2022 走看看