Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
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, 8129👍, 0💬
Popular Posts:
What Happens to Your Transactions When ERROR 1213 Occurred? - MySQL FAQs - Transaction Management: C...
When should the register modifier be used? Does it really help? The register modifier hints to the c...
What Happens to Indexes If You Drop a Table? - Oracle DBA FAQ - Managing Oracle Table Indexes If you...
How do I use forms? The basic syntax for a form is: <FORM ACTION="[URL]">...&l t;/FORM>Wh...
What is thread? A thread is an independent path of execution in a system.