以下是什么意思?
Class.Function(variable := 1 + 1)
这个操作符叫什么,它做了什么?
它用于分配可选变量,而不分配先前的变量.
原文链接:https://www.f2er.com/vb/255766.htmlsub test(optional a as string = "",optional b as string = "") msgBox(a & b) end sub
你现在可以做
test(b:= "blaat") 'in stead of test("","blaat")