I have a method which contains a ParamArray parameter and was wondering if there was some special notation i could use in VBA to get the same effect as:
method val1, _
val2, _
new object(){prop1:=val11, _
prop2:=val12}, _
new object(){prop1:=val21, _
prop2:=val22}
Its not pretty but should get the point acrossed. Basically i am trying to translate the skills/logic i have learned to use in .Net, since 1.0, and try to incorporate a similar logic design in VBA.