The following access modifiers are available: - internal (default): Visible to references inside the same package.
- private: Visible to references in the same class.
- protected: Visible to references in the same class and derived classes.
- public: Visible to references everywhere.
- static: Specifies a function that belongs to the class, as apposed to instances of the class.
|