C# Corner
Tech
News
Videos
Forums
Trainings
Books
Events
More
Interviews
Jobs
Live
Learn
Career
Members
Blogs
Challenges
Certifications
Bounties
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
.NET
ADO.NET
Android
ASP.NET
C#
Databases & DBA
Design Patterns & Practices
Java
Learn iOS Programming
OOP/OOD
SharePoint
Software Testing
Web Development
WPF
View All
5
Reply
What is type of Access modifier ?
Sandeep Kumar
9y
1.1k
1
Reply
Delete Row
Delete Column
Insert Link
×
Insert
Cancel
Embed YouTube Video
×
Width (%)
Height (%)
Insert
Cancel
Table Options
×
Rows
Columns
First row as header
Create Table
Insert Image
×
Selected file:
Alignment
Left
Center
Right
Select an image from your device to upload
Upload to Server
Cancel
Submit
Private : Accessible only inside the class. Protected :Accessible only in derived class. Public: Accessible inside the class as well as outside the class. Internal : Accessible inside the class/Application and accessible outside the class but not Application. Internal Protected: Accessible inside the derived class and application but not accessible outside the derived class.
Dimpy Dhiman
9y
1
http://csharp.net-informations.com/language/csharp-access-specifiers.htm
Munesh Sharma
9y
1
Access ModifiersAccess Modifiers (Access Specifiers) describes as the scope of accessibility of an Object and its members. We can control the scope of the member object of a class using access specifiers. The following five accessibility levels can be specified using the access modifiers:public, private , protected , internal and protected internalpublic: Access level is not restricted.protected: Access level is limited to the containing class or types derived from the containing class.What are the Default Access Modifiers in C# ?Internal: Access level is limited to the current assembly.protected internal: Access level is limited to the current assembly or types derived from the containing class.private: Access level is limited to the containing type.If no modifier is specified, the method is given private access.
Dharmendra Rai
9y
1
Public Private Protected PrivateProtected
Amit Parmar
9y
0
Access modifier are Public Internal Protected Protected Internal Private
Sandeep Kumar
9y
0
What is the properties of oop?
What is abstraction properties in oop ?
Message