可访问性不一致

可访问性不一致: 参数类型“parameter type”比方法“member method”的访问性低

返回类型和方法的形参表中引用的各个类型必须至少具有和方法本身相同的可访问性
可访问约束请参看:
ms-help://MS.MSDNQTR.2003FEB.2052/csspec/html/vclrfcsharpspec_3_5_4.htm

using System;
class Class1
{
    enum EmployeeType{ Instructor, Sales, Officer  };
    public void ChooseEmployee(EmployeeType c)  //CS0051错误,方法的形参引用的类型EmployeeType,
//与方法本身ChooseEmployee的可访问性不一致
    {
        //....
    }
}

//应该改为

using System;
class Class1
{
   
public enum EmployeeType{ Instructor, Sales, Officer  };
    public void ChooseEmployee(EmployeeType c)  //访问性一致,都是public
    {
       //....
    }
}


  public static Bestway.Tools.Protocol m_Protocol = null; 

class Protocol
 {
            public Protocol()
            {
                
            }

}

错误 1可访问性不一致: 字段类型“Bestway.Tools.Protocol”比字段“Global.Params.m_Protocol”的可访问性低

 

修改如下,OK


  public static Bestway.Tools.Protocol m_Protocol = null; 

public  class Protocol
 {
            public Protocol()
            {
                
            }

}




你可能感兴趣的:(c,Class)