공부일자 : 2019-04 환경 : Visual Studio 2017 언어 : C# 공부는 유투브에 올라와있는 강좌를 참고하였다. https://www.youtube.com/watch?v=gE1AEHPtMxE&t=321s Customer라는 Class를 따로 만든 후, 본 Class에서 배열을 생성해보았다. Customer.cs using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AnimalShelter { public class Customer { public string FirstName; public string LastName..