Passing Data to Parameters in Other Programming Languages

You can compare how the passing of data differs between Visual FoxPro and other languages.

The following table compares passing data to parameters by reference between Visual FoxPro and other languages.

Visual FoxPro BASIC

=ABC(@X)

–OR–

DO ABC WITH X

ABC X

Pascal C/C++

procedure ABC

var x:integer);

ABC(&VAR);

The following table compares passing data to parameters by value between Visual FoxPro and other languages.

Visual FoxPro BASIC

=ABC(X)

ABC ByVal X

Pascal C/C++

procedure ABC (x:integer);

ABC(X);

Expand imageSee Also


© , 1996-2020 • Updated: 11/10/20
Comment or report problem with topic