linq > Enumerable.Where(numbers, ...)
https://www.youtube.com/watch?v=wUhrYbq7t8g&index=5&list=PL90AF0EFFEF782D27
の7:40あたりを参考に。
sample.cs
using System;
using System.Linq;
public void Main()
{
int[] numbers = new [] {3,1,4,1,5,9,2};
var result =
Enumerable.Where(numbers, n => n < 4) //<-------
.Select(n => n);
foreach(int idx in result)
Console.WriteLine(idx);
}
結果
3
1
1
2
Author And Source
この問題について(linq > Enumerable.Where(numbers, ...)), 我々は、より多くの情報をここで見つけました https://qiita.com/7of9/items/b4c4d4fabea172ea684c著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .