C# Access Modifier Meaning in Life
public Marks a member as accessible from an object variable as well as any
derived classes.
private Marks a method as accessible only by the class that has defined the
method. In C#, all members are private by default.
protected Marks a method as usable by the defining class, as well as any derived
classes. Protected methods, however, are not accessible from an object
variable.
internal Defines a method that is accessible by any type in the same assembly,
but not outside the assembly.
protected internal Defines a method whose access is limited to the current assembly or
types derived from the defining class in the current assembly.

 SomeMethod() { }
        }
    }

相关文章:

  • 2022-01-07
  • 2022-12-23
  • 2022-01-06
  • 2021-10-01
  • 2022-12-23
猜你喜欢
  • 2021-05-08
  • 2021-11-16
  • 2022-12-23
  • 2021-06-03
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案