New Operator

Syntax
New objtype
Group
Operator
Description
Returns a new instance of objtype.
Parameters Description
objtype This is the new object's type.
See Also
Objects

Sub Main
    Dim obj As Object
    Set obj = New Dictionary
End Sub