Open colinangusmackay opened 1 year ago
Basically an extension method that takes in an IEnumerable<T?> and returns and IEnumerable<T> after filtering out any entry that is null so each element in the resulting sequence is guaranteed to be not null.
IEnumerable<T?>
IEnumerable<T>
null
Basically an extension method that takes in an
IEnumerable<T?>
and returns andIEnumerable<T>
after filtering out any entry that isnull
so each element in the resulting sequence is guaranteed to be not null.