linq > 独自のWhereの定義 > static IEnumerable<int> Where(...
https://www.youtube.com/watch?v=FupRSJe-cc0&list=PL90AF0EFFEF782D27&index=6
の6:00あたりで紹介されている。
独自の.Whereを実装できるようだ。
sample.cs
using System;
using System.Linq;
static class MainClass
{
static IEnumerable<int> Where(
this int[] ints, Func<int, bool> gauntlet)
{
Console.WriteLine("My Where()");
foreach(int i in ints)
if (gauntlet(i))
yield return i;
}
static void Main()
{
int[] numbers = new [] {3,1,4,1,5,9,2};
var result =
numbers
.Where(n => n < 3)
.Select(n => n);
foreach(int idx in result)
Console.WriteLine(idx);
}
}
結果
My Where()
1
1
2
Enumerable.Where()と記載の場合は独自の実装が使われない、というようなことを言っていた(多分)。
yield return i;
の理解はまだ。
Author And Source
この問題について(linq > 独自のWhereの定義 > static IEnumerable<int> Where(...), 我々は、より多くの情報をここで見つけました https://qiita.com/7of9/items/8d926eb31d68452012b0著者帰属:元の著者の情報は、元の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 .