本帖最后由 韦俊琳 于 2013-4-7 09:43 编辑
我要做两个队列的拼接并打印
代码如下:- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace test9
- {
- class Program
- {
- static void Main(string[] args)
- {
-
- int[] first = {1,2,3}
- int[] second = {4,5,6}
- List<int> listFirst = new List<int>(first);
-
- List<int> listSecond = new List<int>(second);
-
- List<int> listResult = listFirst.Join(listSecond);
- foreach (int i in listResult)
- {
- Console.Write(i+" ");
-
- }
- Console.Read();
- }
- }
复制代码 List<int> listResult = listFirst.Join(listSecond);这一句的问题在哪呢
错误信息:"Join"方法没有任何重载采用"1"个参数
|