Skip to content

Access Modifiers

Mario Gutierrez edited this page Jan 8, 2017 · 10 revisions
  • public Open to everyone.
  • private Only members of the class.
  • protected private + children.
  • internal Only within the assembly.
  • protected internal Protected and within the assembly (no external children).
  • Types are implicitly internal.
  • Members are implicitly private.

Clone this wiki locally