c#中类和成员的修饰符介绍

2020-12-13 13:58

阅读:473

标签:style   blog   color   os   ar   strong   sp   div   on   

类访问修饰符:

public

访问级别最高,公共访问没有限制。

internal

只允许在本程序集内访问,其他程序集或站点引用其所在的程序集无法访问此类。

例如程序集LibraryA写有ClassA,程序集LibraryB引用LibraryA,在LibraryB的类或方法里无法通过LibraryA调用ClassA。

 internal static class ClassA
 {
      public string Name { get; set; }
 }

 

c#中类和成员的修饰符介绍

标签:style   blog   color   os   ar   strong   sp   div   on   

原文地址:http://www.cnblogs.com/paulhe/p/4051242.html


评论


亲,登录后才可以留言!