Explain what is different and how it works. Compare the ArrayList approach with the alternative solution, evaluate which one is more effective, and explain why.
Revise this code example C# for Finding the duplicates and follow the discussion question below //function to display the duplicate values in an Array public void DisplayArray(ArrayList ary) { //loop through all the elements for (int i = 0; i < ary.Count; i++) { Console.Write(ary[i]+” “); } Console.WriteLine(); } //function to find the duplicate values […]