I have this code:
field = string.Format(Str, value1, value2,
found == true ? fieldName : "", found == true ? "product" : "");
Is there a way to combine the two found == true ternary operation into a more succinct piece of code?
|
|
I have this code:
Is there a way to combine the two
|
|||
|
|
|
|
Long lines with multiple ternary operators can be really illegible. Line breaks help a little with readability.
|
|||
|
|
|
You don't need the
However, in my view the following is easier to read:
|
||||||
|
|
|
This is just an opinion but... YUK! I hate reading code like this. Ternary operators may make for less code, but readability is suffering here. Don't go for less lines of code if it hurts readability. |
||
|
|
|
|
What about:
Only one ternary, more readable than the original example, but I would consider a if/else statement for readability... |
||||||||||||
|
|
|
You can abbreviate it like so:
|
||
|
|
|
|
Stop comparing
|
||
|
|
|
|
Comparing to true is unnecessary:
|
||
|
|
|
|
Since
|
||
|
|
|
|
That line of code took my manual parser a few moments longer to digest than I would like. I'm all for succinct and elegant coding, but wouldn't you rather come across this in a few months time, albeit over a few more lines?
Just my personal taste, but I know which one I'd rather encounter. |
||
|
|