I have a list of integers and I want to find out the position of the biggest integer in my list.
List<int> members = new List<int>({312, 33, 122, 3979, 8712, 88})
I tried getting the biggest number by doing int max = members.Max();
and then I tried to get its index like this int highestMember = members.FindIndex(max);
but it doesn't work this way