vote up 2 vote down star

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?

flag

44% accept rate

6 Answers

vote up 3 vote down check

Hit the enter key.

public static somemethod(param1, 
    param2, 
    param3, 
    more params etc...)

...is perfectly valid.

link|flag
Thanks, I can't believe it was that simple and obvious. – muhan Aug 11 at 22:31
Probably - that is why you got down voted. – Arnis L. Aug 11 at 22:32
Likewise, as far as compilation is concerned, there's no reason you need to put any newlines in your code, except for preprocessor directives which traditionally need to be newline delimited. Of course, if you want humans to be able to understand your code, newlines are strongly recommended :) – Mark Rushakoff Aug 11 at 22:45
Dup stackoverflow.com/questions/1118811/… – Ruben Bartelink Aug 11 at 23:34
vote up 1 vote down

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.

link|flag
Resharper is great, but one of the things I don't like is how it wraps lines. I personally prefer to manually line things up the way apathetic has shown. Some folks like it automatic, though. +1 – Charlie Salts Aug 11 at 22:35
vote up 1 vote down

This might help.

link|flag
vote up 0 vote down

C# doesn't need any line continuation characters (the way basic does). Just insert a line break anywhere in the line.

public static somemethod(type param1, 
                         type param2,
                         type param3)
{

}

works just fine.

If you look at linq and fluent interface samples you will see some idiomatic ways to break long lines:

builder
   .AddSomething()
   .If((z) => z.SomeCondition)
   .AddSomethingElse();
link|flag
vote up 0 vote down

You have a couple options:

  1. Tools > Options > All Languages > General > Enable Word Wrap
  2. Use the following regex in the Find In Files dialog to find long lines (120 characters in this case) in the project so you can split them?
    ^.^120

Edit: Seeing the marked answer - I rather assumed that part was known. :o

link|flag
I was first! ^^ – Arnis L. Aug 11 at 22:32
@Arnis: Note on #2 here - I had a project lead many years ago who would revert entire SCC check-ins if someone submitted a line over 120 chars long. :fail: – 280Z28 Aug 11 at 22:34
Sounds like a good restriction – Arnis L. Aug 11 at 22:42
Yes, but revert? Just fix the line iff it becomes a problem in an area you're actually working on. I can fit over 300 characters on a line without scrolling, forcing wrapping while I work is just a waste of my time and screen real estate. – 280Z28 Aug 11 at 22:53
vote up 0 vote down

C# is not line based, so you can split the statements anywhere but inside an identifier:

public static void somemethod(
   int param1,
   int param2,
   int param3,
   more params etc...
)

You can even write something like:

for
(
int
i
=
0
;
i
<
10
;
i
++
) 
{
Console
.
WriteLine
(
i
)
;
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.