분류 전체보기273 [ C# 8일차 ] Collections_Hashtable 키와 값을 같이 저장! using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Collections; namespace Study09 { class App { //생성자 public App() { Console.WriteLine("App"); //컬렉션 인스턴스 생성 Hashtable table = new Hashtable(); table.Add(100, "홍길동"); //table.Add(100, "임꺽정"); //키 중복 불가. 에러 table.Add(102, new Hero()); table.Add("aaa", 1000); t.. 2023. 1. 10. [ C# 8일차 ] Collections_Queue, Stack Queue 선입선출 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Collections; namespace Study09 { class App { //생성자 public App() { Console.WriteLine("App"); Queue queue = new Queue(); queue.Enqueue(1); queue.Enqueue("홍길동"); queue.Enqueue(true); queue.Enqueue(null); queue.Enqueue(new Hero()); queue.Enqueue(new Queue()); qu.. 2023. 1. 10. [ C# 8일차 ] Collections_ArrayList object 형식으로 박싱되어 원래의 데이터 형식으로 명시적 형변환 필요. App Class using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Collections; namespace Study09 { class App { ArrayList list; //변수 정의 //생성자 public App() { Console.WriteLine("App"); //모든 컬렉션을 사용하기 위해서는 //먼저 인스턴스를 생성해야 한다 list = new ArrayList(); //인스턴스를 반드시 생성하자 list.Add("홍길동"); //추가.. 2023. 1. 10. [ C# 8일차 ] 프로퍼티 App Class using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Study09 { class App { //생성자 public App() { Console.WriteLine("App"); //객체를 초기화 //방법1 //멤버변수 id의 한정자는 private //Hero hero = new Hero(100); //방법2 //멤버변수 id의 한정자는 public //Hero hero = new Hero(); //hero.id = 100; //방법3 //메서드 활용 //Hero hero = new Hero(); //hero.SetI.. 2023. 1. 10. [C# 7일차] 배열 Inventory 과제 App Class using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Day7 { class App { //생성자 public App() { Console.WriteLine("App"); Inventory inventory = new Inventory(5); inventory.PrintAllItems(); inventory.AddItem(new Item("장검")); inventory.PrintAllItems(); inventory.AddItem(new Item("장검")); //이미 장검이 있습니다. inventory.PrintAl.. 2023. 1. 10. [C# 7일차] 배열을 이용한 맵 이동 App Class using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Study07 { class App { int[,] arrHero = new int[2, 3]; int[,] arr = { {1, 3, 1 }, {1, 1, 2 } }; int rowIndex; int colIndex; //생성자 public App() { Console.WriteLine("App 생성자"); Console.WriteLine(); for (int i = 0; i < arr.GetLength(0); i++) { for(int j = 0; j < arr.. 2023. 1. 9. 이전 1 ··· 40 41 42 43 44 45 46 다음