Hi, what is the C# equivelant to VB's line break charector?
ThanksCode:strString = "A" & "B" & _
"C"
Printable View
Hi, what is the C# equivelant to VB's line break charector?
ThanksCode:strString = "A" & "B" & _
"C"
First up, that's a line continuation character, not a line break character.
As for the question, there isn't one. In VB lines are assumed to terminate unless you explicitly continue them with an underscore. In C# lines are assumed to continue unless you explicitly terminate them with a semicolon.
oh I knew that damnit, thanks.