Would love to see the upcoming rewrite of the IDE come with the "New" keyword. Would make creating objects much more faster.
Old Way
With "New" Keyword.
If any methods have parameters that need to be included with the Initialization:
Old Way
B4X:
Dim Pikmin As Map
Pikmin.Initialize
B4X:
Dim Pikmin As New Map
B4X:
'Old Way
Dim Pikmin As Method
Pikmin.Initialize("parameter 1", null)
'With "New" Keyboard
Dim Pikmin As New Method("parameter 1", null)