Đặt danh sách -
List < string > list1 = new List < string > () { "Lawrence", "Adams", "Pitt", "Tom" };
Bây giờ, hãy sử dụng phương thức Chứa để kiểm tra xem một mục có thoát trong danh sách hay không.
if (list1.Contains("Adams") == true) { Console.WriteLine("Item exists!"); }
Sau đây là mã để kiểm tra xem một mục có tồn tại trong danh sách C # hay không.
Ví dụ
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("Item exists!"); } else { Console.WriteLine("Item does not exist!"); } } }