B
bh
I'm trying to convert the following statement to VB.NET:
writer.Write(@"<some html here>");
I tried simply removing the semicolon, but VB chokes on the @-sign.
Unfortunately, when searching online, I can't find any information on what
this actually does in the c# code, otherwise I'd simply remove it. What
does the @ symbolize, here, and how can I effectively rewrite this in VB?
Thanks in advance.
bh
writer.Write(@"<some html here>");
I tried simply removing the semicolon, but VB chokes on the @-sign.
Unfortunately, when searching online, I can't find any information on what
this actually does in the c# code, otherwise I'd simply remove it. What
does the @ symbolize, here, and how can I effectively rewrite this in VB?
Thanks in advance.
bh