C#LinqSkipLastメソッド
要素を最後からスキップし、SkipLast()メソッドを使用して残りの要素を返します。
以下は配列です。
int[] marks = { 45, 88, 50, 90, 95, 85 };
ここで、SkipLast()とLambda式を使用して最後から2つの要素をスキップしましょう。ただし、これは要素を降順で配置した後に行われます。
IEnumerable<int> selMarks = marks.AsQueryable().OrderByDescending(s => s).SkipLast(2);
例
using System; using System.Linq; using System.Collections.Generic; public class Demo { public static void Main() { int[] marks = { 45, 88, 50, 90, 95, 85 }; IEnumerable<int> selMarks = marks.AsQueryable().OrderByDescending(s => s).SkipLast(2); Console.WriteLine("Skipped the marks of last two students..."); foreach (int res in selMarks) Console.WriteLine(res); } }
出力
Skipped the marks of last two students... 95 90 88 85
-
C#LinqWhereメソッド
Whereメソッドは、述語に基づいて値の配列をフィルタリングします。 ここで、述語は70を超える要素をチェックしています。 Where((n, index) => n >= 70); 例 using System; using System.Linq; using System.Collections.Generic; public class Demo { public static void Main() { int[] arr = { 10, 30, 20, 15, 90, 85, 40, 75 }; &n
-
C#Linq Distinct()メソッド
個別の要素を取得するには、Distinct()メソッドを使用します。 以下は、重複する要素を含むリストです。 List<int> points = new List<int> { 5, 10, 5, 20, 30, 30, 40, 50, 60, 70 }; 次に、個別の要素を取得します- points.AsQueryable().Distinct(); 例全体を見てみましょう- 例 using System; using System.Linq; using System.Collections.Generic; class Demo { &nbs