判斷list對象.size()>0;若是成立,就說明裏面有數據 ide
List<T> list = new List<T>();spa
list.OrderBy(c=>c.屬性);excel
using System; using System.Collections; //file使用Hashtable時,必須引入這個命名空間 class Program { public static void Main() { List<int> list = new List<int>(); list.Add(1); list.Add(2); if (!list.Exists(x => x == 3)) { // 判斷目標數據3是否存在集合List裏 Console.WriteLine("不存在"); list.Add(3); // 不存在這條記錄就添加 }else { Console.WriteLine("存在"); } } }
if(!lst.Contains(item))code
lst.Add(item)對象