C#把一个集合里面的元素循环,放到一个数组中,该怎么循环。。。。

如题所述

//声明一个集合
List<string> list = new List<string>();
//声明一个数组
string[] Array = new string[] { };
//接受集合遍历出来的数据
string str = "";
//给集合添加数据
list.Add("张三1");
list.Add("李四2");
list.Add("王五3");
//如果集合中有数据开始遍历
if (list.Count > 0)
{
for (int i = 0; i < list.Count; i++)
{
str += list[i] + ",";//把每个数据之间用','分开
}
}
if (str.Length >= 2)
{
//从开始截取到最后一个,
str = str.Substring(0, str.LastIndexOf(','));
//把累积的数据分割成字符串 用数组接受
Array = str.Split(',');
}
//循环出数组的数据
for (int i = 0; i < Array.Length; i++)
{
//输出 Array[i]
}
温馨提示:内容为网友见解,仅供参考
第1个回答  2013-09-17
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace List
{
class Program
{
static void Main(string[] args)
{
asdf();

}
public static void asdf()
{
List<string> list = new List<string>();
string[] array = new string[10];
list.Add("张三");
list.Add("李四");
list.Add("王五");
list.Add("马六");
list.Add("赵七");

for (int i = 0; i < list.Count;i++ )
{
array[i] = list[i];

}

for (int i = 0; i < array.Length;i++ )
{
Console.WriteLine(array[i]);

}
}

}
}
第2个回答  2013-09-17
假定数组是a[]
for(inti=0;i<a.length;i++){

console.writeline(a[i]);
}
还有一种专门对集合的遍历
foreach(int i in a)
{
console.writeline(i);
}
int i 为定义一个变量 也可以是 double i 等等 , in a 表示遍历数组a
希望对你有帮助
第3个回答  2013-09-17
array[] t = new array[list.count()];
int i =0;
foreach(var item in list)
{
t[0]=item;

i++;

}
第4个回答  2013-09-17
用for each

C#把一个集合里面的元素循环,放到一个数组中,该怎么循环。。。
List<string> list = new List<string>();\/\/声明一个数组 string[] Array = new string[] { };\/\/接受集合遍历出来的数据 string str = "";\/\/给集合添加数据 list.Add("张三1");list.Add("李四2");list.Add("王五3");\/\/如果集合中有数据开始遍历 if (list.Count > 0){ for (int...

请问c#中for循环出来的东西如何一一对应的传入一个集合里的数据
循环中使用 string aaa=fList [j] 就能依次获取fList集合中所有的值了。还有你说的ListItemRight()这个方法循环里没看到啊。如果要循环添加到另一个数组,数组对象.add(fList [j]);

C#数组中,把相同的元素提取出来,放入另一个数组中
\/\/如果是int类型只要把string改为int就行了。\/\/使用循环将值付给数组

如何定义C#数组,然后把内容放在数组里面,通过循环来控制操作c#数组内容...
int counter=0;\/\/然后在formLoad中初始化数组,如:for(int i=0;i<20;i++){ playNum[i]=i;} \/\/最后在下一个中计数,每点击一下将计数器增加一 if(counter!=19)counter=counter+1;else counter=0;\/\/准备工作做完了,你可以在"点这里“按钮中添加代码了 textbox.text=playNum[counter].t...

C#怎样把一个5位数每个数循环出来存入数组中 求高手
是想将如12345保存成int[]{1, 2, 3, 4, 5}的形式吗。先取余数,然后降1位再取余数。 看如下代码是否能满足你的要求

c#如何把textbox里得数据按行读取到一个数组里,一行数一个数组元素
string[] lines = textBox1.Text.Split('\\n'); \/\/一行对应一元素找特定字符就是用IndexOf,只不过这个只返回第一个匹配的位置,所以你要用循环,一直找直到IndexOf返回<0的数。

c#有两个数组,想把这个两组中相同的元素放在另一个数组中
如果是自己的方法,这使用 Dictionary<string,int>暂存一下,下扫描str1,把所有值放入Dictionary(value设置为1)然后扫描str2,如果值存在则把value设置为0。如果值不存在则设置为-1 这样二次扫描完成,则所有value为1的就是你的str1p,value为-1的就是你的str2p,而value为0的就是你要求的差值 ...

C#怎么把list中某个元素出现n次后的内容存入另一个list
static void Main(string[] args) { List<string> lst = new List<string> { "a", "b", "a", "b", "c", "a", "1", "b" }; foreach (string s in F(lst, "a", 2)) Console.Write(s + " "); Console.ReadLine(); } static List<string> F...

c#将一个数组中奇数放到一个集合中,偶数放到另一个集合中, 然后将两...
5,6,7,8,9,...};ArrayList Odd = new ArrayList();ArrayList NotOdd = new ArrayList();for(int i=0;i<nums.length;i++){ if(nums[i]%2==0) { NotOdd.Add(Nums[i]); continue; } Odd.Add(Nums[i]);}\/\/然后将两个集合...

c# 数组问题,如何将一个数组中的元素随机分配到N个数组中
说思路~把数组a元素存进list 创建循环 然后用random.next(list.count)来生成索引标签 然后把对应该索引的元素存进另外的数组,之后用list.removeAt方法移除该元素。直至list中没有元素即完成

相似回答