Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

3 Answers

up vote 6 down vote accepted

Yes it CAN return null if you have an extension method defined in your code somewhere like the following:

public static IEnumerable<string> Select(this List<string> list, Func<string, string> action)
{
    return null;
}

Otherwise no; it will return an empty sequence.

share|improve this answer
Very good point. – tjrobinson Sep 26 '11 at 11:15

The values sequence itself will never be null. If source is empty then values will be an empty sequence containing no items.

(And, of course, it's possible that one or more of the string items in the sequence might be null.)

share|improve this answer

Linq returns empty sequences If you want to test if the sequence is empty use the .Any() method

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.