forked from amkovkov/GranuSightSoftware2
fix: typo
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
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));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user