List of strings to one string

前端 未结 6 691
清酒与你
清酒与你 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 23:08

    If you use .net 4.0 you can use a sorter way:

    String.Join(String.Empty, los);
    

提交回复
热议问题