Visual Basic .NET <-> PHP | Automatic variable
Declaration
automatic variable declaration Variable declaration is used for its creation.
Dim name = par2
Dim name = init_value
Dim name As type = init_value
Use
variable use Using variables, you can access the data stored in a variable, can be used to store or retrieve the value.
name
Automatic variable in another programming language:
Differences to:
Share