StartsWith.cs 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. // Licensed to the .NET Foundation under one or more agreements.
  2. // The .NET Foundation licenses this file to you under the Apache 2.0 License.
  3. // See the LICENSE file in the project root for more information.
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Linq;
  7. using System.Threading.Tasks;
  8. namespace System.Linq
  9. {
  10. public static partial class EnumerableEx
  11. {
  12. /// <summary>
  13. /// Returns the source sequence prefixed with the specified value.
  14. /// </summary>
  15. /// <typeparam name="TSource">Source sequence element type.</typeparam>
  16. /// <param name="source">Source sequence.</param>
  17. /// <param name="values">Values to prefix the sequence with.</param>
  18. /// <returns>Sequence starting with the specified prefix value, followed by the source sequence.</returns>
  19. public static IEnumerable<TSource> StartWith<TSource>(this IEnumerable<TSource> source, params TSource[] values)
  20. {
  21. if (source == null)
  22. throw new ArgumentNullException(nameof(source));
  23. return source.StartWith_(values);
  24. }
  25. private static IEnumerable<TSource> StartWith_<TSource>(this IEnumerable<TSource> source, params TSource[] values)
  26. {
  27. foreach (var x in values)
  28. yield return x;
  29. foreach (var item in source)
  30. yield return item;
  31. }
  32. }
  33. }