IForeThread.Join

Syntax

Join;

Join();

Description

The Join method stops code execution before thread completion.

Comments

Calling the Join method stops application thread execution, in which the current thread was created and started. After the thread execution is completed, the control is returned to the following application code.

Fore and Fore.NET Examples

The example of use is given in description of the IForeThread.Start method.

See also:

IForeThread