using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Study06 { class App { //생성자 public App() { Console.WriteLine("App 생성자"); //배열 //같은 데이터를 관리하는 공간(배열의 인스턴스) //배열 변수 정의 //데이터형식[] 배열이름(변수명) = new 데이터형식[배열크기]; //배열이름은 복수형/앞에 arr붙임 int[] scores; //배열 인스턴스 생성 scores = new int[5]; //배열의 요소 인덱스 0~(배열의 용량-1) //인덱스로 접근이 가능 scores[..