can we call constructor within a constructor??

i mean; i've large no of attributes which i've to set through constructor. the list of these attributes in one constructor becomes very large. so can i call constructor within constructor?


like

VB Code:
  1. Sub New (ByVal id As Integer, ByVal name As string, ByVal charges As itemCharges)
  2.  
  3. End Sub

or any other way to do it?