[C#]リストの最後の要素を取得する
書式
リスト名.Last()
使用例
using System;
using System.Collections.Generic;
using System.Linq;
class Program
{
static void Main(string[] args)
{
// int型List
var cftLst = new List<int> { 21, 34, 56, 78, 90 };
//最後の値を取得
Console.WriteLine(cftLst.Last());
// string型List
var ctLst = new List<String> { "study", "skill", "in", "arkgame", "com" };
//最後の値を取得
Console.WriteLine(ctLst.Last());
System.Console.ReadKey();
}
}
using System;
using System.Collections.Generic;
using System.Linq;
class Program
{
static void Main(string[] args)
{
// int型List
var cftLst = new List<int> { 21, 34, 56, 78, 90 };
//最後の値を取得
Console.WriteLine(cftLst.Last());
// string型List
var ctLst = new List<String> { "study", "skill", "in", "arkgame", "com" };
//最後の値を取得
Console.WriteLine(ctLst.Last());
System.Console.ReadKey();
}
}
using System; using System.Collections.Generic; using System.Linq; class Program { static void Main(string[] args) { // int型List var cftLst = new List<int> { 21, 34, 56, 78, 90 }; //最後の値を取得 Console.WriteLine(cftLst.Last()); // string型List var ctLst = new List<String> { "study", "skill", "in", "arkgame", "com" }; //最後の値を取得 Console.WriteLine(ctLst.Last()); System.Console.ReadKey(); } }
結果
90
com