S
Shlomy Shivek
With C# I am able to do something like that:
public ClassName() {some code here}
public ClassName(Parameters here):this() {some code here}
and when calling the parameters constructor it calls the default
constructor first and than continue to the parameter constructor code.
Is it possible to do the same thing with vb.net ??
public ClassName() {some code here}
public ClassName(Parameters here):this() {some code here}
and when calling the parameters constructor it calls the default
constructor first and than continue to the parameter constructor code.
Is it possible to do the same thing with vb.net ??