Search code examples
vbscript

Are there any avantages to using Call when calling a function in VBscript?


Forgive me if the answer is obvious as it has been a long time since I have programmed vbscript.

Are there any avantages to using Call when calling a function in vbscript?

For example:

SomeFunction param1, param2

vs

Call SomeFunction (param1, param2)

Solution

  • No, there is not.