This is probably really obvious and I'm being dense. In C# I can do this:
string = @"this is
some preformatted
text";
How do I do this in VB?
|
1
|
|
|
|
|
|
There isn't one. In C# you have the ability to do something like this "This ends in a new line\n.", but in VB there's no concept of that, you have predefined variables that handle that for you like "This ends in a new line" & vbNewLine Hence, there's no point in a string literal (@"something\n") because in VB it would be interpreted literally anyway. The problem with VB .NET is that a statement is deemed terminated at the end of a line, so you can't do this
You're forced to terminate your string on every line and use an underscore to indicate you wish to continue your statement, which makes you do something like
|
||||||||||||
|
|
|
I don't think you can do this in VB. You have to do:
Edit: As suggested in comments, replaced VB specific vbNewLine by Environment.NewLine |
||||||||
|
|
|
Actually you can do this in vb.net. You use something called XML Literals.
|
||||
|
|
|
Like others said, there's no @ operator, so if you get into heavy string manipulation, use String.Format IMHO, this
is more readable than this
|
||
|
|
|
|
You might want to try Alex Papadimoulis' "Smart Paster" add-in. It lets you paste a string into C# or VB code "as StringBuilder". |
||
|
|
|
|
VB is weak for string manipulation. No pre-formatting or inline escape characters. Any speacial characters need to be appended to the string. |
||||||
|