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

◆ Concat< TSource >()

static IEnumerable< TSource > System.Linq.Enumerable.Concat< TSource > ( this IEnumerable< TSource > first,
IEnumerable< TSource > second )
inlinestatic

Definition at line 4380 of file Enumerable.cs.

4381 {
4382 if (first == null)
4383 {
4384 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.first);
4385 }
4386 if (second == null)
4387 {
4388 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.second);
4389 }
4391 {
4393 }
4394 return concatIterator.Concat(second);
4395 }

References System.Linq.first, System.Linq.second, and System.Linq.ThrowHelper.ThrowArgumentNullException().