0

假设我有这个类并且所有方法都正确实现(在这种情况下,我认为实现与问题无关)。

static class ZedGraphHelper
{
    public static ZedGraph.ZedGraphControl GetZedGraph(Guid config, Guid equip)
    { throw new NotImplementedException; }

    //This method here is the faulty one
    public static void AdjustGraphParam(ZedGraph.ZedGraphControl zGraph, RP.mgrRPconfigGraph mgr)
    { throw new NotImplementedException; }

    public static void FillGraph(ZedGraph.ZedGraphControl zGraph, Guid config, Guid equip, Guid form)
    { throw new NotImplementedException; }

    public static void FillGraph(ZedGraph.ZedGraphControl zGraph,  Shadow.dsEssais.FMdocDataTable dtDoc, Shadow.dsEssais.FMchampFormDataTable dtChamp)
    { throw new NotImplementedException; }

    public static void LoadDoc(Shadow.dsEssais.FMdocDataTable dtDoc, Guid equip, Guid form)
    { throw new NotImplementedException; }

    public static double LoadDonnee(Guid champ, Guid doc)
    { throw new NotImplementedException; }

    public static SqlDataReader ReadDonnee(Guid champ, Guid doc)
    { throw new NotImplementedException; }
}

此代码编译良好并且没有设置错误。如果我将类声明从

static class ZedGraphHelper

public static class ZedGraphHelper

我收到以下错误消息:Inconsistent accessibility: parameter type 'RP.mgrRPconfigGraph' is less accessible than method 'Shadow.ZedGraphHelper.AdjustGraphParam(ZedGraph.ZedGraphControl, RP.mgrRPconfigGraph)'此方法存在于我刚刚在这里包含的类声明中。方法是public static void

为什么我会收到此错误?公众是否会改变代码行为中的任何内容?

4

2 回答 2

2

YesRP.mgrRPconfigGraph是一个内部类型(或者比它更难访问)。因此,当您对其进行更改时ZedGraphHelperpublic会将其方法公开为所有标记为public. 你不能为AdjustGraphParam方法做,因为参数是internal type

要么使方法内部

internal static void AdjustGraphParam(ZedGraph.ZedGraphControl zGraph, RP.mgrRPconfigGraph mgr)
{ throw new NotImplementedException; }

或将RP.mgrRPconfigGraph类型标记为公开

于 2013-09-19T11:31:47.777 回答
0

类的默认访问修饰符是internal. 这意味着,如果您省略访问修饰符,则该类将是内部的。

如果将类更改为公共类,则会收到此错误,因为类中存在的方法的参数之一是内部类型。

这意味着你的类不能是公共的,因为它依赖于一个内部类型,它比你的类更难访问。(内部类型只能在声明它的程序集中使用,而公共类可以在任何地方使用)。

于 2013-09-19T11:33:40.217 回答