Sorry but constructors are not inheritable.

You can do Asgorath suggestions and to take it a step further you can call the base class's constructor to do the work.

Code:
Public Sub New(ByVal size As Integer)
     MyBase.New(size)
End Sub