arrayThree.AddRange(arrayOne);//新集合中加入第一个集合
for (int i = 0; i < arrayTwo.Count; i++)
{
//判断如果新集合中不包含第二个集合中的数
if (!arrayThree.Contains(arrayTwo[i]))
{
arrayThree.Add(arrayTwo[i]);
}
}
//遍历输出新集合
for (int i = 0; i < arrayThree.Count; i++)
{
Console.WriteLine(arrayThree[i]);
}
Console.ReadKey();
希望可以帮到你!作者: jdzzlf 时间: 2013-3-14 10:25
采用集合数组,将这两个数组的值,都加入到一个集合数组中如ArrayList,然后,在将ArrayList中的值,赋值给第三个数组。例如:
int a[]={1,2,3};
int b[]={4,5,6};