What does the following mean?
Class.Function(variable := 1 + 1)
What is this operator called, and what does it do?
|
1
|
What does the following mean?
What is this operator called, and what does it do?
|
|||
|
|
|
|
It is used to assign optional variables, without assigning the previous ones.
you can now do
|
||
|
|
|
|
VB.NET supports this syntax for named (optional) parameters in method calls. This particular syntax informs |
||
|
|
|
|
It assigns the optional parameter "variable" the value 2. |
|||
|
|