摘要: 在指定 String 数组的每个元素之间串联指定的分隔符 String,从而产生单个串联的字符串。(来源于MSDN)有两个重载函数:[C#]public static string Join( string separator, string[] value);[C#]public static string Join( string separator, string[] value, int startIndex, int count);这里仅仅演示一个技巧性的代码:private void button4_Click(object sender, System.EventArgs e) 阅读全文
posted @ 2013-12-03 23:39 kanek 阅读(355) 评论(0) 推荐(0) 编辑