Invocation Statement

An invocation statement transfers control to the invoked method.

invocation-statement:

invocation-expression

Example

Sub Test(a, b, c: integer);
Begin
    
End Sub;

Sub Main();
Begin
    
//Method invocation
    Test(123);
End Sub;

See also:

Statements  | Delegate Invocation