An invocation statement transfers control to the invoked method.
invocation-statement:
invocation-expression
Sub Test(a, b, c: integer); Begin End Sub; Sub Main(); Begin //Method invocation Test(1, 2, 3); End Sub;
See also:
Statements | Delegate Invocation