Quantcast What is the default access specifier in c# Text - Physics Forums Library

PDA

View Full Version : What is the default access specifier in c#


chandubaba
Jul19-08, 06:06 AM
Hello,
what is the default access specifier in c#. In college everyone says its private, but in the text book its written "When you do not specify any data member as public, protected or private the default access specifier for a class is internal."

And in one forum I read that default access specifier for class is internal but for class members is private. But again in the same forum someone says everything is private. Which is correct?

GMontag
Jul27-08, 05:55 PM
Things declared outside of a class or struct will default to internal. Things declared inside of a class or struct will default to private.