Jim McCreary
March 30th, 2004, 06:54 PM
I am a C++ coder trying to learn Visual Basic .NET
I want to create a multi-line String to put into a TextBox. In VC++ I would just concatinate the lines with "\r\n" between the line.
CString cs = "Line one" + "\r\n" + "Line two"
What is the equivalent in Visual Basic .NET using the String variable type?
I want to create a multi-line String to put into a TextBox. In VC++ I would just concatinate the lines with "\r\n" between the line.
CString cs = "Line one" + "\r\n" + "Line two"
What is the equivalent in Visual Basic .NET using the String variable type?