本帖最后由 贡宗新 于 2013-4-28 10:52 编辑
大家帮我跑一下,不知道为什么,以前写的时候也没问题,这次居然就只出来最后两个元素- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace 字符串分割
- {
- class Program
- {
- static void Main(string[] args)
- {
- string[] str = { "王五","赵六","张三", "赵四"};
-
- string result= ConStr(str);
- Console.WriteLine(result);
- Console.ReadKey();
- }
- public static string ConStr(string[] name)
- {
- string result = "";
- for (int i = 0; i < name.Length; i++)
- {
- if (i == name.Length - 1)
- {
- result += name[i];
- }
- else
- {
- result = name[i]+"|";
- }
- }
- return result;
- }
- }
- }
复制代码 |
|