반응형
Dictionary를 Xelement로 변환 한 후 , XML파일로 저장한다.
저장한 파일을 읽어서 Dictionary로 변환.
#소스코드
//Dictionary to Element:
Dictionary<string, string> dict = new Dictionary<string,string>();
XElement el = new XElement("root",dict.Select(kv => new XElement(kv.Key, kv.Value)));
el.Save("파일경로")
//Element to Dictionary:
XElement rootElement = XElement.Load("파일 경로");
Dictionary<string, string> dict = new Dictionary<string, string>();
foreach(var el in rootElement.Elements())
{
dict.Add(el.Name.LocalName, el.Value);
}
'Programing > C# ' 카테고리의 다른 글
DotNetZip Examples (Export, Import) (0) | 2019.12.06 |
---|---|
DynamicPropertyDesciptor PropertyGrid 동적 표시. (2) | 2016.07.26 |
C# 키보드 후킹(DataGrid 한글 입력을 위한) (2) | 2014.11.10 |
C# Properties.Settings 에서 생성한 값의 저장경로[user.config] (0) | 2014.08.01 |
Tabless TabControl(탭해더 없는 탭페이지) 만들기 (0) | 2014.06.16 |