Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What are the different accessibility levels defined in .NET
What are the different accessibility levels defined in .NET ?
✍: Guest
Following are the five levels of access modifiers :-
ã Private : Only members of class have access.
ã Protected :-All members in current class and in derived classes can access the
variables.
ã Friend (internal in C#) :- Only members in current project have access to the
elements.
ã Protected friend (protected internal in C#) :- All members in current project
and all members in derived class can access the variables.
ã Public :- All members have access in all classes and projects.
2007-10-23, 8729👍, 0💬
Popular Posts:
How To Define a Sub Function? - Oracle DBA FAQ - Creating Your Own PL/SQL Procedures and Functions A...
How To Create an Add-to-Bloglines Button on Your Website? - RSS FAQs - Adding Your Feeds to RSS News...
How To Enter Boolean Values in SQL Statements? - MySQL FAQs - Introduction to SQL Basics If you want...
How To Create an Add-to-NewsGator Button on Your Website? - RSS FAQs - Adding Your Feeds to RSS News...
How can you implement MVC pattern in ASP.NET? The main purpose using MVC pattern is to decouple the ...