목록전체 글 (64)
아카이브
App using LearnDotnet; using System; using System.Collections; using System.Collections.Generic; //using 지시문을 사용하면 네임스페이스에 정의된 형식을 해당 형식의 정규화된 네임스페이스를 지정하지 않고도 사용할 수 있습니다. namespace LearnDotnet { public class App { //생성자 public App() { //초기화 Dictionary dic = new Dictionary(); dic.Add(100, new ItemData(100, "장검", 0, 8)); dic.Add(101, new ItemData(101, "단검", 1, 5)); dic.Add(102, new ItemData(102, ..
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LearnDotnet { internal class ItemData { public int id; public string name; public int damage; //생성자 public ItemData(int id, string name, int damage) { this.id = id; this.name = name; this.damage = damage; } } } using System; using System.Collections.Generic; using System...
using LearnDotnet; using System; using System.Collections; using System.Collections.Generic; //using 지시문을 사용하면 네임스페이스에 정의된 형식을 해당 형식의 정규화된 네임스페이스를 지정하지 않고도 사용할 수 있습니다. namespace LearnDotnet { public class App { //생성자 public App() { //초기화 //Dictionary : 키/값 쌍으로 데이터를 저장 관리 하는 컬렉션 Dictionary dicItemDatas = new Dictionary(); dicItemDatas.Add(100, new ItemData(100, "장검", 8)); dicItemDatas.Add(101, ne..
using System; using System.Collections.Generic; using System.Linq; using System.Net.Http.Headers; using System.Text; using System.Threading.Tasks; namespace LearnDotnet { internal class App { public App() { int[,] arr = new int[3, 3]; arr[1, 2] = 5; int rowLength = arr.GetLength(0); int colLength = arr.GetLength(1); for(int i = 0; i< rowLength; i++) { for(int j = 0; j < colLength; j++) { Console..