Question #349235

create two class names User and administrator. the administrator class should inherit from the user class and the two classes should be members of the namespace named User Namespace.

Expert's answer

namespace User Namespace
{


    class User
    {


    }


    class Administrator : User
    {


    }


}
LATEST TUTORIALS
APPROVED BY CLIENTS