C
C#2d ago
thomas

✅ Inconsistent accessibility: parameter type ''x" is less accessible than "y"

I'm getting this weird error here. Probably some namespace wizardry i'm not aware of.
12 Replies
reflectronic
reflectronic2d ago
Program needs to be a public class, since the constructor is public add public partial class Program; to your Program.cs
Angius
Angius2d ago
Or make it internal and use InternalsVisibleTo attribute
ero
ero2d ago
that's not what the error refers to
thomas
thomasOP2d ago
im using top level statements
ero
ero2d ago
so do this
thomas
thomasOP2d ago
like this?
No description
ero
ero2d ago
yes
thomas
thomasOP2d ago
It works now kinda confused ab how should i've come up w that random public partial class lol
Angius
Angius2d ago
By knowing what top-level statements generate But yeah, it's not exactly front-and-center knowledge
ero
ero2d ago
but also isn't it weird to reference Program anywhere? is this normal for this stuff?
thomas
thomasOP2d ago
I need it for tests

Did you find this page helpful?