What are the members of the class?

A class’s members include all the members declared in the class, along with all members (except constructors and finalizers) declared in all classes in its inheritance hierarchy . Private members in base classes are inherited but are not accessible from derived classes. Fields are variables declared at class scope.

Read more

How do you initialize base class?

Both methods assign the argument values to the appropriate data members of the class. If you do not explicitly initialize a base class or member that has constructors by calling a constructor, the compiler automatically initializes the base class or member with a default constructor .

Read more