VB.NET:=运算符

前端之家收集整理的这篇文章主要介绍了VB.NET:=运算符前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
以下是什么意思?
Class.Function(variable := 1 + 1)

这个操作符叫什么,它做了什么?

它用于分配可选变量,而不分配先前的变量.
sub test(optional a as string = "",optional b as string = "")
   msgBox(a & b)
end sub

你现在可以做

test(b:= "blaat")
'in stead of
test("","blaat")
原文链接:https://www.f2er.com/vb/255766.html

猜你在找的VB相关文章