I am getting this error:
'CTest.A.A()' is inaccessible due to its protection level.
when compiling this code:
public class A
{
private A()
{
}
}
public class B : A
{
public void SayHello()
{
Console.WriteLine("Hello");
}
}
Can anyone explain why?