1. using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace study08 { class App { public App() { //배열 선언 및 초기화 int[,] arr = { {200, 200, 200}, {100, 100, 200}, {100, 100, 100}, {100, 100, 100} }; Console.WriteLine("****************************************"); Console.WriteLine("{0}", arr.GetLength(0)); //row Console.WriteLine("{..