Given the following C# code:
List<string> source = new List<string>();
IEnumerable<string> values = from value in source select value;
Will values ever be null or will it always return an empty sequence?
|
|
|
Yes it CAN return null if you have an extension method defined in your code somewhere like the following:
Otherwise no; it will return an empty sequence. |
|||
|
|
|
The (And, of course, it's possible that one or more of the |
|||
|
|
|
Linq returns empty sequences
If you want to test if the sequence is empty use the |
|||
|
|