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

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

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

Definition at line 7421 of file Enumerable.cs.

7422 {
7423 if (source == null)
7424 {
7425 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.source);
7426 }
7427 if (collectionSelector == null)
7428 {
7429 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.collectionSelector);
7430 }
7431 if (resultSelector == null)
7432 {
7433 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.resultSelector);
7434 }
7436 }

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