Wyo VB Lecture Notes

Objective #1: Use String variables.

You can also use the += operator to concatenate two strings as in

name = "John"
lastName = "Doe"
name += lastName


name is now "JohnDoe" (with no space in between)

This last statement is equivalent to

name = name + lastName