linq from list csharp

Code Example - linq from list csharp

                
                        // Single
string search = "testSearch";
 List<string> list = new List<string>(); // Need to create a string list 
 string result = list.Single(s => s == search);

// Find all where meets the criteria
IEnumerable<string> results = list.Where(s => s == search);
// Select first one
string result = list.First(s => s == search);