OOPs with C#
Object oriented programming with C# Classes: Class is a C# construct to model real-world objects into classes Exa: class Employee { private string _name; private char _gender; private string _qualification; private uint _salary; } Access Modifiers Public:Accessible to the members of the containing class as well as non-members of the class Private:Accessible only to the members […]
