I\'m still quite new to coding in general, and while this simple program is only meant to be a test to learn how constructors work, I\'d still like to know why I\'m getting
Access modifiers are keywords used to specify the declared accessibility of a member or a type. This section introduces the four access modifiers:
The following five accessibility levels can be specified using the access modifiers:
Every members in C# are implicitly private, so in your question the a,b and c are defined as private and so you could not access to them from outside of methodTest.
for more information you may need to look at this page :
Access Modifiers (C# Programming Guide)
Good Luck! :)