这个问题已经在这里有了答案: > Inconsistent accessibility error with the following c# code. Why? 3个
> Error 1 Inconsistent accessibility: return type is less accessible than method 4个
我正在研究约束的通用方法,因此碰到了这个问题并陷入困境.我尝试通过自己的类复制代码,但出现“不一致的不可访问性”.
//this is the reference study class
public class MainView<T> : System.Windows.Window where T : INotifyPropertyChanged, new(){}
//my own
interface ITest{}
class B : ITest
{
public B()
{
}
}
public class MyClass<T> : B where T : ITest, new()
{
}
我不知道这个.参考学习班有什么?如何使用自己定义的类和接口执行相同的签名?
解决方法:
请注意,您的ITest接口和B类如何没有显式的访问修饰符;如果未提供默认值,则默认值是内部的(对于*类型),并且您正在公共的MyClass类中实现它们(比内部更易访问,因此是编译器错误).解决方案是在这种情况下将类型的访问修饰符更改为public,或者将MyClass类设置为内部而不是public.
//my own
public interface ITest{}
public class B : ITest
{
public B()
{
}
}
public class MyClass<T> : B where T : ITest, new()
{
}
有关访问修饰符的更多信息,可以在这里找到:
https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/accessibility-levels