I m confused about How can i Find a Specified Text In a A List using Lambda Expressions For Example i have a List
List<string> MyList = new List<string> {"TEXT","NOTEXT","test","notest"};
as you can see The List is Filtred By "ToUpper" and "ToLower" Properties i want for example to shearch on ToLower elemtes in this list using Lambda Expression
var SList = MyList.FindAll(item => item.ToLower);
foreach(var s in SList)
{
Console.WriteLine(s);
}