Wednesday, December 3, 2008

Accessibility Levels in C#:

public:Access is not restricted.
private:Access is limited to the containing type.
protected:Access is limited within the class or types derived from the containing class
internal:Access is limited within the assembly
protected internal:Access is limited within the assembly or types derived from the containing class.

No comments: