In your scenario, you should use the
shadows
keyword[
^].
public class emp Inherits person
private id as int16
public Shadows sub Add()
'procedure for add new employee to database
end sub
end Class
This keyword hides the implementation of the base class.