Skip to content

Commit a7b4e54

Browse files
committed
Enumerable.Reverse(TSource[])
1 parent 24e3d41 commit a7b4e54

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
using System.Collections.Generic;
2+
3+
namespace System.Linq
4+
{
5+
public static class EnumerableEx
6+
{
7+
public static IEnumerable<TSource> Reverse<TSource>(
8+
#if !NET_10_OR_GREATER
9+
this
10+
#endif
11+
TSource[] source) => Enumerable.Reverse(source);
12+
}
13+
}

0 commit comments

Comments
 (0)