Hi everyone !! Could anyone please help me understand what AsEnumerable().Any(Function (x) … do? I’m traying to understand this line:
ListOfMailMessages.AsEnumerable().Any(Function (mmessage) mmessage.Subject.ToLower.Contains(emailSubject.ToLower)) witch filters email messages with certain subject.
so what I’m trying to understand is what is the rule that i should follow when i use the AsEnumerable().Any(Function (x)…? what is x and what it value?
Note: i don’t have any background on VB