c#使用 linq 怎么给list赋值
1. 可以用查询结果的 ToList()方法
2. 示例代码如下:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication2
{
class Program
{
static void Main(string[] args)
{
int[] arr = { 3, 4, 5, 6, 7, 8, 11 };
List<int> evenList;
//找出arr中的偶数放入 一个evenList里
var result = from v in arr where v % 2 == 0 select v;
evenList = result.ToList();
//显示evenList的结果
foreach (var v in evenList)
Console.Write("{0} ", v);
Console.WriteLine();
Console.ReadKey();
}
}
}
3. 运行结果如下