设置列表-
List < string > list1 = new List < string > () { "Lawrence", "Adams", "Pitt", "Tom" };
现在,使用Contains方法检查项目是否在列表中退出。
if (list1.Contains("Adams") == true) { Console.WriteLine("项目存在!"); }
以下是检查C#列表中是否存在某项的代码。
using System; using System.Collections.Generic; public class Program { public static void Main() { List < string > list1 = new List < string > () { "Lawrence", "Adams", "Pitt", "Tom" }; Console.Write("List...\n"); foreach(string list in list1) { Console.WriteLine(list); } Console.Write("Finding an item in the list...\n"); if (list1.Contains("Adams") == true) { Console.WriteLine("项目存在!"); } else { Console.WriteLine("项目不存在!"); } } }