20
1
using System;
2
using System.Collections.Generic;
3
4
namespace ConsoleApplication1
5
{
6
public class Program
7
{
8
public static void Main(string[] args)
9
{
10
List<string> names = new List<string>();
11
names.Add("Kapil");
12
names.Add("Ramesh");
13
names.Add("Raj");
14
names.Add("Anil");
15
16
bool result = names.Contains("Raj");
17
Console.WriteLine(result);
18
}
19
}
20
}
Cached Result
(1, 1)
(2, 2)
(3, 3)
(4, 4)
(5, 5)
Duration: 523 msec
(2, 2)
(3, 3)
(4, 4)
(5, 5)
Duration: 523 msec