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

◆ Prepend< TSource >()

static IEnumerable< TSource > System.Linq.Enumerable.Prepend< TSource > ( this IEnumerable< TSource > source,
TSource element )
inlinestatic

Definition at line 3692 of file Enumerable.cs.

3693 {
3694 if (source == null)
3695 {
3696 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.source);
3697 }
3699 {
3701 }
3702 return appendPrependIterator.Prepend(element);
3703 }

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