vote up 1 vote down star

In c#, when we are writing a method which gets for example 6 parameters, and we want to break the parameters in 3 lines, how could we break the lines?

flag

47% accept rate
Is your question about the syntax for breaking a line, or an approach to where in the list to break it? – David M Jul 13 at 10:55
First one: sysntax for breaking a line specially when we want to pass parameters to the method. – odiseh Jul 13 at 10:58
2  
I get the impression that he's coming from the world of VB where an underscore '_' is used to break a line. Trying this in c# won't work, so he probably didn't know what to do. I've seen this with a few devs going from vb to c#. Funny how sometimes the simplest things trips one up. – Tomas Jul 13 at 10:59

8 Answers

vote up 1 vote down check

In C# you do not need to specify anything in particular to break a line into several on-screen lines.

So a method which would look like this in vb:

sub someMethod(param1 as String, _
    param2 as Integer, _
    param3 as Boolean)

    doSomething()

end sub

Will look like this in C#

public void someMethod(string param1,
    int param2, 
    bool param3) {

    doSomething();
}
link|flag
vote up 8 vote down

If you mean in terms of the layout, there are various options, such as:

Option 1:

public void Foo(int first, int second,
                int third, int fourth,
                int fifth, int sixth)

Option 2:

public void Foo(int first, int second,
    int third, int fourth,
    int fifth, int sixth)

Option 3:

public void Foo(
    int first, int second,
    int third, int fourth,
    int fifth, int sixth)

Option 4:

public void Foo
    (int first, int second,
     int third, int fourth,
     int fifth, int sixth)

Personally I like option 1, but it has two disadvantages:

  • You need to lay the parameters out again if you change the method name
  • You don't get as much space per line, because it's already indented a fair distance

Failing that, I'd generally go with option 2 or 3. Option 4 looks pretty ugly to me.

link|flag
@Ruben: Have deleted my comment. Feel free to add a new one :) – Jon Skeet Jul 13 at 13:10
vote up 4 vote down

In C# you can break the lines after any parameter name (either before of after the comma). Stylecop (the Microsoft coding style guideline checker) suggests either all parameters on one line, or one per line - nothing in between. Like so:

public void Method(int param1, int param2, int param3, int param4, int param5, int param6)
{

}

public void Method(
    int param1,
    int param2,
    int param3,
    int param4,
    int param5,
    int param6)
{

}

But, there is no requirement to follow these guidelines, you can do whatever suits your internal style.

link|flag
vote up 2 vote down
public void Foo(object Parameter0, object Parameter1,
    object Parameter2, object Parameter3,
    object Parameter4, object Parameter5)
{
    //do stuff
}

6 parameters / 3 lines = 2 parameters per line? Although I'd say that looks a little funny because there's extra room on each line.

Note that in C#, you can just use a line break - nothing fancy needed (VB's "_" for instance).

link|flag
vote up 6 vote down

You can break the lines using the ENTER key, towards the right side of your keyboard.

link|flag
2  
What if he has the RETURN key instead? Actually I've the "Invio" button... XD – kentaromiura Jul 13 at 11:37
vote up 2 vote down

What do you mean? like this?

public void MyMethod(int Parameter1, string Parameter2
                   , long Parameter3, float Parameter4
                   , double Parameter5, char Parameter6)
{
    //Method Functionality
}
link|flag
vote up 0 vote down

If I understood rightly what you are saying then,,,

public void myMethod ( type parameter1, 
                       type parameter2,
                       .
                       .
                       type parameterN) 
{
     .
     .
     .
}
link|flag
-1 to bring it back to 0: Wanted on specifically 3 lines. Other answers are clearer and explain why, not just give the answer – Ruben Bartelink Jul 13 at 11:21
vote up 13 vote down

I guess you can just simply add the line breaks:

private void SomeMethod(int param1, int param2, 
                        int param3, int param4,
                        int param5, int param6)
{
    // do something
}

In C# (unlike VB.NET - at least up to now; this will change in VS2010, check "Implicit Line Continuation" about half way down on the page) you can introduce line breaks in the code pretty much anywhere. You don't need to specify that the code statement continues on the next line; that is taken care of by the syntax.

If you have a method declared as my sample above, this does not set up any requirements on how you call it. The following examples are all valid:

SomeMethod(1, 2, 3, 4, 5, 6);
SomeMethod(1, 2, 3, 4, 5,
    6);
SomeMethod(1
    , 2, 3, 4
    , 5, 6);
link|flag
Can you expand your VB.NET note to say that there is stuff coming in 4.0 making _ line breaks redundant in general (rather than just alluding to it) – Ruben Bartelink Jul 13 at 11:23
@Ruben: good point; added a note and link. – Fredrik Mörk Jul 13 at 11:34

Your Answer

Get an OpenID
or

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