Tag - accessibility

C# Keywords Tutorial Part 67: public

The "public" keyword in C# is used to specify the accessibility of a class member or type. When a member or type is marked as public, it can be accessed from any code that has access to the class or type. This keyword is an important part of encapsulation in object-oriented programming, as it...

C# Keywords Tutorial Part 47: internal

C# is a contemporary, object-oriented programming language that finds wide use in software development such as in applications, websites, and other software solutions. An essential concept in C# is access modifiers, which regulate the visibility and accessibility level of classes, methods, and properties. In this post, we will investigate the "internal" keyword, which is...