有没有办法指向添加到c#中通用列表的最后一项?就像c ++中矢量的back()一样
答案 0 :(得分:3)
如果您使用的是3.5框架
using System.Linq;
using System.Collections.Generic;
public static class Program {
public static void Main() {
Console.WriteLine(new List<int> { 1, 2, 3 }.Last()); // outputs - 3
}
}
答案 1 :(得分:2)
List<int> myList = new List<int>();
for( int i = 0; i < 5; i++ )
{
myList.Add (i);
}
Console.WriteLine (String.Format ("Last item: {0}", myList[myList.Count - 1]));
答案 2 :(得分:2)
list.Last()
?