forked from amkovkov/GranuSightSoftware2
8 lines
205 B
C#
8 lines
205 B
C#
namespace GSS2.Core.Extentions;
|
|
|
|
static class EnumerableExtensions
|
|
{
|
|
public static IEnumerable<(int i, T value)> Enumerate<T>(this IEnumerable<T> values) => values.Select((value, i) => (i, value));
|
|
}
|
|
|