Is there any difference between these?
Is one supposed to be used over the other etc...
Code:
Dim class As New MyClass
class.getMethod()Code:
Dim class As New MyClass
Function getClass()
Return class
End function
getClass().getMethod()