Sign In/My Account
|
View Cart
O'Reilly Home
Community
Books & Videos
Safari Books Online
Conferences
Training
School of Technology
About
Search
Search Tips
Article:
StringBuilders Explained
Subject:
VB example
Date:
2004-01-05 09:32:06
From:
anonymous2
Response to:
VB example
Dim x As String
x = "Hello"
x += " World"
The use of += is valid in VB.NET, the above code will return "Hello World"