1. Newtonsoft.Json NuGet을 설치한다.
2. 사용할 Class에 Newtonsoft.Json을 추가한다.
using Newtonsoft.Json;
위 코드를 입력하면 JsonConvert를 사용할 수 있다.
3. Dictionary를 text file로 저장
File.WriteAllText("FileName.txt", JsonConvert.SerializeObject(dictionary));
4. 저장한 text file을 다시 dictionary로 불러오기
var Loaded_Dictionary = JsonConvert.DeserializeObject<Dictionary<string, List<Double>>>(File.ReadAllText("FileName.txt"));
Dictionary 형태는 저장하려는, 불러오려는 Dictionary 형태에 맞게 수정하면 된다.
'둘 > [ C# ]' 카테고리의 다른 글
[C#] Pass Listbox items from Main Form to Sub Form (0) | 2022.06.01 |
---|---|
[C#] Graph Plot, Delete Series1 on Legend (0) | 2022.05.31 |
[C#] Create Dictionary<string, List<string>> (0) | 2022.05.30 |
[C#] Dictionary Value 內 List 중복 제거 (0) | 2022.05.28 |
[C#] Dictionary Key Rename, Dictionary Key 이름 변경 (0) | 2022.05.24 |