csharp / LINQ > WhereやSelectなどのメソッドは、1要素ずつ処理されます
引用: 即効入門 C#プログラミング すぐに現場で使える知識 by 中 博俊さんら
7.3 LINQ
...WhereやSelectなどのメソッドは、1要素ずつ処理されます。
test.cs
using System;
using System.Linq;
class Program
{
static int GetValue()
{
System.Threading.Thread.Sleep(100);
return 0;
}
static void Main()
{
var q = Enumerable.Range(0, 10).Select(x => GetValue());
// ...
foreach (var x in q.ToArray()) // 1秒フリーズ
{
Console.WriteLine(DateTime.Now.Millisecond);
}
}
}
qをvarで代入した時には100ミリ秒のSleepは起きず、.ToArray()でxに入れる段階でSleepが起きるようだ。
Author And Source
この問題について(csharp / LINQ > WhereやSelectなどのメソッドは、1要素ずつ処理されます), 我々は、より多くの情報をここで見つけました https://qiita.com/7of9/items/cedad3ff4c5197ffa45a著者帰属:元の著者の情報は、元の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 .