Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ SelectMany< TSource, TCollection, TResult >() [2/2]

static IEnumerable< TResult > System.Linq.Enumerable.SelectMany< TSource, TCollection, TResult > ( this IEnumerable< TSource > source,
Func< TSource, int, IEnumerable< TCollection > > collectionSelector,
Func< TSource, TCollection, TResult > resultSelector )
inlinestatic

Definition at line 7391 of file Enumerable.cs.

7392 {
7393 if (source == null)
7394 {
7395 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.source);
7396 }
7397 if (collectionSelector == null)
7398 {
7399 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.collectionSelector);
7400 }
7401 if (resultSelector == null)
7402 {
7403 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.resultSelector);
7404 }
7406 }

References System.Linq.collectionSelector, System.Linq.resultSelector, System.Linq.source, and System.Linq.ThrowHelper.ThrowArgumentNullException().