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?
|
|
|||||||||
|
|
|
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:
Will look like this in C#
|
||
|
|
|
|
If you mean in terms of the layout, there are various options, such as: Option 1:
Option 2:
Option 3:
Option 4:
Personally I like option 1, but it has two disadvantages:
Failing that, I'd generally go with option 2 or 3. Option 4 looks pretty ugly to me. |
||
|
|
|
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:
But, there is no requirement to follow these guidelines, you can do whatever suits your internal style. |
||
|
|
|
|
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 " |
||
|
|
|
|
You can break the lines using the ENTER key, towards the right side of your keyboard. |
||||
|
|
|
What do you mean? like this?
|
||
|
|
|
|
If I understood rightly what you are saying then,,,
|
||
|
|
|
I guess you can just simply add the line breaks:
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:
|
||||
|
