Recently I had a situation where I needed to recall a class' constructor while inside the constructor. Suppose you have a class as follows, with the following code to instantiate it; Dim myTest As New Test(10, 20, 30) Class Test Private _x As Integer...