LINQメモ
たまにLINQのどの操作が何なのか混乱するのでメモ。
Program.cs
//ランダムの生成
var rand = new Random();
//0~99の乱数を100個集めたIEnumerable<int>を作る
var list = Enumerable.Range(0, 100).Select(x => rand.Next(100));
//それを結合して文字列として出力する
Console.WriteLine(string.Join(" ", list));
//標準入力から受け取ったものを' 'で分割、intに変換して10未満のものだけ、数が小さいものから選びList<int>にする
var arr = Console.ReadLine().Split(' ').Select(int.Parse).Where(x => x < 10).OrderBy(x => x).ToList();
//1個ずつ出力する
arr.ForEach(x => Console.Write(string.Format("{0} ", x)));
//最後の改行
Console.WriteLine();
Whereはフィルタ
Selectは射影
OrderByは選択する順番
Author And Source
この問題について(LINQメモ), 我々は、より多くの情報をここで見つけました https://qiita.com/Nucleareal/items/5733eab1bfcec6453924著者帰属:元の著者の情報は、元の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 .