C# Class Members


This entry is part 5 of 11 in the series C# Classes

There are 9 types of class members. They can be divided into 2 groups: data members (store data) and function members (execute code).

  1. Fields – Data
  2. Constants – Data
  3. Methods – Function
  4. Properties – Function
  5. Constructors – Function
  6. Destructors – Function
  7. Operators – Function
  8. Indexers – Function
  9. Events – Function

More About Classes

We have this series of posts on classes and we also have more about classes in a series that is “intermediate” and starts with the post called C# Classes Intermediate.

We have a post on constructors that is in the Inheritance series that is called C# Constructors and Inheritance. It is not in this series because you will first need to understand inheritance.

Series Navigation<< C# Class Object InitializersC# Methods >>