LINQ > from / where / select
2296 ワード
https://www.youtube.com/watch?v=1UqjUgcdq6g&index=4&list=PL90AF0EFFEF782D27
の2:00あたりのコードを参考にした。
using System;
using System.Linq;
public void Main()
{
int[] numbers = new [] { 3, 1, 4, 1, 5, 9, 2 };
var result =
from n in numbers
where n < 4
select n;
foreach(int i in result)
Console.WriteLine(i);
}
output
3
1
1
2
Author And Source
この問題について(LINQ > from / where / select), 我々は、より多くの情報をここで見つけました https://qiita.com/7of9/items/235706565de03ede0625著者帰属:元の著者の情報は、元の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 .