C # access modifier of basic knowledge 8,

Source: Internet
Author: User

C # access modifier of basic knowledge 8,
1. Class access modifier

Modifier Access permission
None or internal The callback class can only be used in the same assembly.
Public The same Assembly or any external component that references this assembly can be used as a category.
Abstract or internal abstract The class can only be inherited from the same assembly. The class cannot be instantiated.
Public abstract Any other assembly in the same assembly or referenced in the Assembly can be called classes, which cannot be instantiated and can only be inherited.
Sealed or internal sealed The class can only be in the same Assembly. This class cannot be inherited and can only be instantiated.
Public sealed The same assembly or other assembly that references the Assembly can be accessed, cannot be inherited, and can only be instantiated
2. Member Modifier
Modifier Access permission
Public Access to the same assembly or other assembly that references the Assembly
Private Accessible in the same class
Protected Only access from the same class or from a derived class
Internal Only one set of programs can access
Protect internal You can access

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.