1. General data types - Void

    Article: AN0001763Updated:

    Data type Void does not contain any value. Function marked as returning data type void actually does not return any value.

    Following example shows function DoSomething, that does not have any input parameters and does not return any result neither.

    void DoSomething()

×