There are two classes; when inheriting, the compiler displays the error "Inconsistent accessibility base class is less accessible than class."
public abstract class WaresTreeDataModel { public abstract void SomeMethod(); } public sealed class OraWaresTreeDataModel : WaresDataModel { public override void SomeMethod() { } } What is wrong here? Version .net Framework 4.5.2
WaresTreeDataModelis not aWaresDataModel- Grundy