how to print the last element in a list C# code example
Example 1: c# get the last item in a list
var lastItem = integerList.Last();
Example 2: f# get last element of list
Seq.last lst
var lastItem = integerList.Last();
Seq.last lst