Tag - properties

C# Keywords Tutorial Part 75: set

C# is an object-oriented programming language that offers a variety of features to enhance the development process. One such feature is the "set" keyword. In this blog post, we'll explore what the "set" keyword is, how it works, and some code examples. What is the "set" keyword? The "set" keyword is used in C# to define...

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 16: class

Programming languages like C# are flexible and support many different paradigms, including object-oriented programming. Classes are the cornerstone of object-oriented programming in C#, allowing programmers to write modular, reusable code. In this article, we'll examine some code examples and go deeper into C#'s "class" keyword. What is a class in C#? In C#, a class is...