初步学习Linq的使用方法表达式
程序员文章站
2022-05-11 08:10:06
...
利用ling求数组中>4的数
语句:
List arr = new List() { 1, 23, 3, 4, 5, 6 };
IEnumerable<int> result = arr.Where(a => { return a > 4; });
foreach (var item in result)
{
Console.WriteLine(item);
}
利用ling求数组中>4的数的和
int result = arr.Where(a => { return a > 4; }).Sum();
Console.WriteLine(result);
方法 (个人建议用语句)
// int[] num = { 1, 2, 3, 85, 63, 12, 56,12 };
//IEnumerable lowNums =from n in num where n<15 select n;//n是要查找的数, num是目标数组,
// foreach (var item in lowNums)
// {
// Console.WriteLine(item);
// }
//过滤类型。例如只要集合中选定的类型
//过滤类型找出集合中的string类型
ArrayList arrayList = new ArrayList() { 9, “你好”, ‘男’, 19.3f, true };
IEnumerable ie = arrayList.OfType();
foreach (var item in ie)
{
Console.WriteLine(item);
}
上一篇: python3.5实现socket通讯示例(TCP)
下一篇: 什么是LAMP?该如何解决