Created
June 19, 2011 12:52
-
-
Save mlhaufe/1034244 to your computer and use it in GitHub Desktop.
VBScript class constructor parameters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Class Person | |
Private m_Age | |
Private m_Name | |
Public Default Function Init(Name, Age) | |
m_Name = Name | |
m_Age = Age | |
Set Init = Me | |
End Function | |
Public Property Get Name | |
Name = m_Name | |
End Property | |
Public Property Let Name(v) | |
m_Name = v | |
End Property | |
Public Property Get Age | |
Age = m_Age | |
End Property | |
Public Property Let Age(v) | |
m_Age = v | |
End Property | |
End Class | |
Dim TheDude : Set TheDude = (New Person)("John",40) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
difference between
init()
andclass_initialize()
Output: