[C#] System.ArrayC#에서는 모든 타입이 객체이다.배열도 당연히 객체이며, 기반이되는 클래스는 System.Array 이다.ForEach()private static void Print(int value) { Console.Write("{0} ", value); } private static void PrintArray(int[] arr) { Array.ForEach(arr, new Action(Print)); Console.WriteLine(); } static void Main() { int[] arr = {90, 65, 72, 88, 73, 91, 63}; PrintArray(arr); }배열의 모든 요소에 동일한 작업을 수행할 수 있다.Sort(), Reverse()Array...