📢 Webサイト閉鎖と移転のお知らせ
このWebサイトは2026年9月に閉鎖いたします。
新しい記事は移転先で追加しております。(旧サイトでは記事を追加しておりません)

 
145行目: 145行目:
  Console.WriteLine(source.TakeWhile(e => e < 5).ToResult());
  Console.WriteLine(source.TakeWhile(e => e < 5).ToResult());
  // → {3, 4}
  // → {3, 4}
// 組み合わせ 1
Console.WriteLine(numbers.Where(x => x % 2 == 0).Take(2).ToResult());
// -> {4, 6}
// 組み合わせ 2
Console.WriteLine(source.Skip(2).Take(4).ToResult());
// -> {5, 6, 7, 8}
// 組み合わせ 3
Console.WriteLine(source.Where(x => x > 4).Distinct().ToResult());
// -> {5, 6, 7, 8, 9}
  </syntaxhighlight>
  </syntaxhighlight>
<br><br>
<br><br>