Answer:
var newArray = array.OrderByDescending(x => x).Take(n).ToArray();
Step-by-step explanation:
Write the find_index_of_largest() function (which returns the index of the largest item in an array). Eg: a = [1 3 5 2 8 0]; largest = find_index_of_largest ( a ); largest = 5; Question: Write the