Classes in C#
A class is the instance of an object. Many times this term sounds confusing. More clearly, a class is a template or structure that will give shape to an object. An object is declared with the same type as a class, the "new" operator is used to construct the object in memory and in this case we access the attributes of the object defined in the class to display them on the screen.