C# 修饰符的访问权限

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace 修饰符的访问权限
{
    class Program
    {
        static void Main(string[] args)
        {
            //简述 private、 protected、 public、 internal 修饰符的访问权限。 
            //private : 私有成员, 在该类的内部才可以访问。 
            //protected : 保护成员,该类内部和继承类中可以访问。 
            //public : 公共成员,完全公开,没有访问限制。 
            //internal: 在同一命名空间内可以访问。
        }
    }
}

 

你可能感兴趣的:(C#,C#,后端)