List<string> list = new List<string>(); list.Add("I"); list.Add("Love"); list.Add("You"); string kk = string.Empty; kk = string.Join("-", list); Response.Write(kk); //结果 I-Love-You
总感觉自己工作6年了,经验丰富.直到近期报了一个.net进阶班才知道.我还差得很远.就拿string.join对比 我的代码: public static int InsertModel<T>(T t) where T : BaseModel { Type type = typeof(T); string columnStrings = string.Join(",", type.GetProperties().Select(p => string.Format(&q
仅供参考:不足之处请大家多多指教 string.Join 一些常用方法 测试类: public class Test { public string Name { get; set; } public string Age { get; set; } } 测试代码: 数组或者是List<string> 类型的数据使用方式如下: //实例化数组 string[] Tstring = {"1","2","3"}; /
源自Difference between String.Join() vs String.Concat() With .NET 4.0, String.Join() uses StringBuilder class internally so it is more efficient.Whereas String.Concat() uses basic concatenation of String using "+" which is of course not an efficie
String.Join 方法 平常工作中经常用到string.join()方法,在vs 2017用的运行时(System.Runtime, Version=4.2.0.0)中,共有九个(重载)方法. // // 摘要: // Concatenates the members of a collection, using the specified separator between // each member. // // 参数: // separator: // The string to