In Visual Studio 2008, if I have a long line of code, how can i get that to breakup into multiple lines?
public static void somemethod(param1, param2, param3, more params etc...)
How can I make this 1 line of code span 2 or 3 lines?
|
|
In Visual Studio 2008, if I have a long line of code, how can i get that to breakup into multiple lines?
How can I make this 1 line of code span 2 or 3 lines?
|
||
|
|
|
|
Hit the enter key.
...is perfectly valid. |
||||||||
|
|
|
You mean how do you do it automatically, or by hand? There are some tools like Resharper that have features to "wrap" long lines of code. If you want to do it manually, then just press the Enter key anywhere that's not in the middle of an identifier. |
||
|
|
|
This might help. |
||
|
|
|
|
C# doesn't need any line continuation characters (the way basic does). Just insert a line break anywhere in the line.
works just fine. If you look at linq and fluent interface samples you will see some idiomatic ways to break long lines:
|
||
|
|
|
|
You have a couple options:
Edit: Seeing the marked answer - I rather assumed that part was known. :o |
||||||||
|
|
|
C# is not line based, so you can split the statements anywhere but inside an identifier:
You can even write something like:
|
||
|
|