8.Lesson 7: Introduction to Classes #

This lesson introduces you to C# Classes. Our objectives are as follows:

  • Implement Constructors.
  • Know the difference between instance and static members.
  • Understand Destructors.
  • Familiarization with Class Members.

Since the beginning of this tutorial, you have been using classes. By now, you should have a sense of what a class is for and how to specify one. This lesson will build upon what you already know and introduce the various class members.

Suggest Edit