C# List<string>和ArrayList用指定的分隔符分隔成字符串

2021-04-12 17:27

阅读:480

标签:ring   logs   type   字符串数组   分隔符   arraylist   list   nbsp   add   

 

原文地址:https://www.cnblogs.com/ahwwmb/p/4166707.html

串联字符串数组的所有元素,其中在每个元素之间使用指定的分隔符

 

            List arr = new List();
            arr.Add("好玩1");
            arr.Add("好玩1");
            arr.Add("好玩1");
            string str = string.Join(",", arr.ToArray());

            ArrayList arr1 = new ArrayList();
            arr1.Add("好玩1");
            arr1.Add("好玩2");
            arr1.Add("好玩3");
            string str1 = string.Join(",", arr1.ToArray(typeof(string)) as string[]);

  

C# List和ArrayList用指定的分隔符分隔成字符串

标签:ring   logs   type   字符串数组   分隔符   arraylist   list   nbsp   add   

原文地址:https://www.cnblogs.com/lijuanfei/p/8997882.html


评论


亲,登录后才可以留言!