Hi all, sometimes I came across so classes that have :
May i know is this same as the Class Initialize routine? Or when does it get fired?Code:Public Sub New()
' Do something
End Sub
Printable View
Hi all, sometimes I came across so classes that have :
May i know is this same as the Class Initialize routine? Or when does it get fired?Code:Public Sub New()
' Do something
End Sub
Take a look at
http://msdn.microsoft.com/en-us/libr...=VS.90%29.aspx
It's certainly worth following the link provided in the page dbasnett linked to. With regards to your question specifically, you should look at the link on constructors.