[UNITY]/TIL: UNITY
[C#]딕셔너리를 알아보자
딕셔너리란?딕셔너리는 키와 값으로 데이터를 저장하는 자료구조이다.키를 통해 값을 빠르게 검색하고, 업데이트할 수 있다. 간단한 예제를 살펴보자. 생성 및 추가Dictionary scores = new Dictionary();scores.Add("Player1", 97);검색int score = scores["Player1"];제거scores.Remove("Player1"); 그리고 foreach를 이용하여, 모든 키/값을 반복하여 확인할 수 있다.foreach를 이용하여 키만 검색하기Dictionary scores = new Dictionary { {"Player1", 1}, {"Player2", 2} };foreach (string key in scores.Keys){ Console.WriteLi..
2024. 10. 31. 22:31