|
-
Nov 2nd, 2008, 09:10 PM
#1
Thread Starter
Hyperactive Member
Line break charector?
Hi, what is the C# equivelant to VB's line break charector?
Code:
strString = "A" & "B" & _
"C"
Thanks
-
Nov 2nd, 2008, 09:35 PM
#2
Re: Line break charector?
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.
-
Nov 2nd, 2008, 09:43 PM
#3
Thread Starter
Hyperactive Member
Re: Line break charector?
oh I knew that damnit, thanks.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|