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?
int[] anArray = { 1, 5, 2, 7 };
This is not the most glamorous way but works.
(must have using System.Linq;)
using System.Linq;
int maxValue = anArray.Max(); int maxIndex = anArray.ToList().IndexOf(maxValue);
2.1m questions
2.1m answers
60 comments
57.0k users