This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!
& Operator Example
This example uses the
& operator to force string concatenation.
Dim MyStr
MyStr = "Hello" &
" World" ' Returns "Hello World".
MyStr = "Check " &
123 &
" Check" ' Returns "Check 123 Check".