| Article: |
StringBuilders Explained | |
| Subject: | VB example | |
| Date: | 2003-07-22 16:46:19 | |
| From: | lwm | |
|
Response to: VB example
|
||
|
Oh yes...sorry about that. Please replace: st += " World!" with st = st & " World!" I kept thinking that "+=" was supported in VB6. |
||
Showing messages 1 through 2 of 2.




x = "Hello"
x += " World"
The use of += is valid in VB.NET, the above code will return "Hello World"