Answers for "get list second last index C#"

C#
10

c# get the last item in a list

var lastItem = integerList.Last();
Posted by: Guest on March-24-2020
0

get first and last item list c#

List<string> _ids = new List<string>() { "aaa", "bbb", "ccc", "ddd" };
var first = _ids.First();
var last = _ids.Last();
Console.WriteLine(first);
Console.WriteLine(last);
Posted by: Guest on April-23-2020

C# Answers by Framework

Browse Popular Code Answers by Language