vote up 5 vote down star
1

What does the following mean?

Class.Function(variable := 1 + 1)

What is this operator called, and what does it do?

flag

3 Answers

vote up 9 vote down check

It is used to assign optional variables, without assigning the previous ones.

sub test(optional a as string = "", optional b as string = "")
   msgbox(a & b)
end sub

you can now do

test(b:= "blaat")
'in stead of
test("", "blaat")
link|flag
vote up 0 vote down

VB.NET supports this syntax for named (optional) parameters in method calls. This particular syntax informs Class.Function that its parameter variable is to be set to 2 (1 + 1).

link|flag
vote up 0 vote down

It assigns the optional parameter "variable" the value 2.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.