Collection<string> strs = new Collection<string>();
bool b = strs.All(str => str == "ABC");
The code creates an empty collection of string, then try to determine if all the elements in the collection are "ABC". If you run it, b will be true.
But the collection does not even have any elements in it, let alone any elements that equal to "ABC".
Is this a bug? Or is there a reasonable explanation?
Thanks

Any()method in connection with it to return false. – Yuriy Faktorovich Oct 25 '11 at 5:04