string x;
foreach(var item in collection)
{
x += item+",";
}
can I write something like this with lambdas?
|
1
|
can I write something like this with lambdas? |
||||||||||||
|
|
|
Shorter syntax, thanks to Earwicker |
||||||||||||||
|
|
|
Assuming C#, have you tried String.Join()? Or is using lambdas mandatory? Example:
EDIT Although the original title (and example) was about concatenating strings with a separator (to which My answer to that is write your own method. String.Join has a purpose, reflected by its name (joins some strings). It's high chance that your format logic has a meaning in your project, so write it, give it a proper name and use it. For instance, if you want to output
I think the intent is clearer, and you also don't take the performance hit of concatenating strings in a loop. |
||||||||||||||
|
|
|
|
||
|
|
|
|
You are looking too far for the solution. The
|
||
|
|
|
|
Does this answer your question? http://stackoverflow.com/questions/21078/whats-the-best-string-concatenation-method-using-c Note that you can do this with |
||
|
|