-
Dictionary처럼 key, value의 짝으로 자료를 저장한다.
저장된 리스트는 key값 기준으로 정렬상태를 유지한다.
SortedList<int, string> sl = new SortedList<int, string>(); sl.Add(100, "one"); sl.Add(10, "two"); sl.Add(0, "three"); bool b = sl.ContainsKey(10); for(int i = 0; i < sl.Count; i++) { string s = sl[i]; } //0, 10, 100 순의 값으로 출력
'C#(Csharp)' 카테고리의 다른 글
C# get set property (0) 2023.02.15 C# List (0) 2023.02.15 Struct and Class (0) 2021.07.31 실수형 소수점 자리 제한하여 출력(float, decimal) (0) 2021.07.27 Formating strings (0) 2021.07.27 List.Sort (0) 2021.07.26 SortedSet (0) 2021.07.24 HashSet (0) 2021.07.24