Is there any way to enhance and get information about the :=
operator?
How can I use this operator and what is the benefit? I tried to search engines but found nothing.
have a look:
xlssheat = Nothing
xlsfile.Close(SaveChanges := True)
Is there any way to enhance and get information about the :=
operator?
How can I use this operator and what is the benefit? I tried to search engines but found nothing.
have a look:
xlssheat = Nothing
xlsfile.Close(SaveChanges := True)
there is a lot on the msdn site
http://msdn.microsoft.com/en-us/library/51wfzyw0.aspx
In short the operator is used to supply values for an argument based on the name of the argument rather than the position of the argument in the arguments list.