vote up 0 vote down star

access modifier of the class [public or protected]

flag

2 Answers

vote up 3 vote down check

In C# if the type is not nested (within other class or struct) and doesn't have access modifier applied it is internal. If it is nested - private.

From C# specification:

3.5.1 Declared accessibility

...

• Types declared in compilation units or namespaces can have public or internal declared accessibility and default to internal declared accessibility.
• Class members can have any of the five kinds of declared accessibility and default to private declared accessibility. (Note that a type declared as a member of a class can have any of the five kinds of declared accessibility, whereas a type declared as a member of a namespace can have only public or internal declared accessibility.)

link|flag
thanku mr.Dzmitry huba good explanation thank u? i have another doubt about static method, variable, class. how these r different from normal class, method and variables – Surya sasidhar Oct 9 at 8:54
In terms of default accessibility they are not different from instance members. – Dzmitry Huba Oct 9 at 9:11
vote up 0 vote down

It is [internal]

link|flag
thank u alex reitbort for information – Surya sasidhar Oct 9 at 10:24

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.