C# find highest array value and index

arrays, c#, indexing

Solution

This is not the most glamorous way but works.

(must have `using System.Linq;`)

 int maxValue = anArray.Max();
 int maxIndex = anArray.ToList().IndexOf(maxValue);

Problem

So I have an unsorted numeric array `int[] anArray = { 1, 5, 2, 7 };` and I need to get both the value and the index of the largest value in the array which would be 7 and 3, how would I do this?

Original source