List of strings to one string

前端 未结 6 714
清酒与你
清酒与你 2020-12-22 22:29

Lets say you have a:

List los = new List();

In this crazy functional world we live in these days which one of t

6条回答
  •  北海茫月
    2020-12-22 22:58

    My vote is string.Join

    No need for lambda evaluations and temporary functions to be created, fewer function calls, less stack pushing and popping.

提交回复
热议问题