可访问性不一致: 参数类型“XX”比方法“XX”的可访问性低的问题

今天在编码的时候,写如下代码发现问题:

 

接口:
interface IReportCustomPageSettings { /// /// 是否横向打印,true表示横向,false表示纵向 /// bool IsLandSapce { get; } PaperSize PaperSize { get; } Margins Margins { get; } PageSettings GetPageSettingsFromReportDefine(); }

然后在另一个类中使用如下方法调用:

public class ReportPrinterBase : IReportPrinter { public abstract void SetReportPageSettingInstantiation(IReportCustomPageSettings reportCustomPageSettings){} }
 

编译时程序提示出错,信息如下:


错误 28 可访问性不一致: 参数类型“MBO.WebHelper.Printing.IReportCustomPageSettings”比方法“MBO.WebHelper.Printing.ReportPrinterBase.SetReportPageSettingInstantiation(MBO.WebHelper.Printing.IReportCustomPageSettings)”的可访问性低 E:/MyWork/MBOProject/ep/MBO.WebHelper/Printing/ReportPrinterBase.cs 50 30 MBO.WebHelper

解决办法:


但是在接口定义前面加上public 关键字时,编译通过。
分析原因:
在C#中如果在同一个命名空间有一个类和一个接口,这个类中有一个public方法,public方法的参数类型就是这个接口。
在这种情况下,如果在另外一个namespace中使用该类时,public方法可以访问,但接口没有访问权限,这当然是不允许的,因此,自然也就无法使用public方法了,因此,c#编译器规定public方法的参数类型必须也被声明成public。


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