I am getting an error
Error CS1929 'uint[]' does not contain a definition for 'Average' and the best extension method overload 'Queryable.Average(IQueryable)' requires a receiver of type 'IQueryable' ArrayLengthTest D:\Visual Studio\ArrayLengthTest\ArrayLengthTest\Program.cs 17 Active
uint[] asd = new uint[5];
for (uint i = 0; i < asd.Length; i++)
{
asd[i] = i;
}
uint arrayAverage = asd.Average();
Any ideas what does it mean? I know that I can easily use ints but I am asking for uints...