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.
namespace User Namespace
{
class User
{
}
class Administrator : User
{
}
}
Comments
Leave a comment