"Inconsistent accessibility" on class definition
Posted
by
TWood
on Stack Overflow
See other posts from Stack Overflow
or by TWood
Published on 2010-10-15T21:01:27Z
Indexed on
2010/12/23
20:54 UTC
Read the original article
Hit count: 146
I'm adding some bindable CLR properties to my ongoing WPF application in my App class and I can't compile because of this inconsistent accessibility error.
Inconsistent Accessibility: Property type 'SomeProj.Error' is less accessible than property 'SomeProj.App.LatestError'
To fix this error I had to change class Error
to public class Error
.
In VB, classes were assumed public and most of the time omitted that access modifier. Is this not the case in C# as well?
I only recently made the vb->c# jump and little nuances like this in the syntax slow me down.
© Stack Overflow or respective owner