C#Linq Last()メソッド
Linq Last()メソッドを使用してシーケンスから最後の要素を取得します。
以下は私たちの配列です。
int[] val = { 10, 20, 30, 40 };
次に、最後の要素を取得します。
val.AsQueryable().Last();
例
using System; using System.Collections.Generic; using System.Linq; class Demo { static void Main() { int[] val = { 10, 20, 30, 40 }; // getting last element int last_num = val.AsQueryable().Last(); Console.WriteLine("Last element: "+last_num); } }
出力
Last element: 40
-
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
-
C#を使用して配列から最後の要素を取得するプログラム
配列を宣言し、要素を追加します。 int[] val = { 5, 8, 15, 25, 40, 55, 80, 100 }; 次に、Queryable Last()メソッドを使用して、最後の要素を取得します。 val.AsQueryable().Last(); 完全なコードを見てみましょう。 例 using System; using System.Collections.Generic; using System.Linq; class Demo { static void Main() { int[] val = {