Search Results
Searching for: Class Methods in C#
Access Modifiers
Language: C#
Access modifiers restrict or permit direct access to a member (method, class, field, etc.) outside of a class or scope.
Constructor
Language: C#
A constructor is a special method that builds the object when a new object is created.
Interfaces
Language: C#
An interface provides a framework for a class. It gives method signatures and constants to the class to be implemented. A class that uses an interface implements the interface.
Inheritance
Language: C#
Inheritance is used to define an object with properties from another object or interface, or to inherit another object's properties.
< Previous Page | Next Page >