在C#中,Contains
方法用于检查集合(如数组、列表、字典等)中是否包含特定元素。下面是使用Contains
方法的示例:
using System;
using System.Collections.Generic;
class Program
{
static void Main()
{
List<int> numbers = new List<int>() { 1, 2, 3, 4, 5 };
// 使用Contains方法检查集合中是否包含特定元素
if (numbers.Contains(3))
{
Console.WriteLine("集合中包含元素3");
}
else
{
Console.WriteLine("集合中不包含元素3");
}
}
}
在上面的示例中,我们首先创建了一个包含整数的列表numbers
,然后使用Contains
方法检查列表中是否包含元素3。最终输出结果为"集合中包含元素3"。