성태의 닷넷 이야기
홈 주인
모아 놓은 자료
프로그래밍
질문/답변
사용자 관리
사용자
메뉴
아티클
외부 아티클
유용한 코드
온라인 기능
MathJax 입력기
최근 덧글
[정성태] VT sequences to "CONOUT$" vs. STD_O...
[정성태] NetCoreDbg is a managed code debugg...
[정성태] Evaluating tail call elimination in...
[정성태] What’s new in System.Text.Json in ....
[정성태] What's new in .NET 9: Cryptography ...
[정성태] 아... 제시해 주신 "https://akrzemi1.wordp...
[정성태] 다시 질문을 정리할 필요가 있을 것 같습니다. 제가 본문에...
[이승준] 완전히 잘못 짚었습니다. 댓글 지우고 싶네요. 검색을 해보...
[정성태] 우선 답글 감사합니다. ^^ 그런데, 사실 저 예제는 (g...
[이승준] 수정이 안되어서... byteArray는 BYTE* 타입입니다...
글쓰기
제목
이름
암호
전자우편
HTML
홈페이지
유형
제니퍼 .NET
닷넷
COM 개체 관련
스크립트
VC++
VS.NET IDE
Windows
Team Foundation Server
디버깅 기술
오류 유형
개발 환경 구성
웹
기타
Linux
Java
DDK
Math
Phone
Graphics
사물인터넷
부모글 보이기/감추기
내용
<div style='display: inline'> <h1 style='font-family: Malgun Gothic, Consolas; font-size: 20pt; color: #006699; text-align: center; font-weight: bold'>Dictionary<TKey, TValue>를 deep copy하는 방법</h1> <p> 예전에 XmlSerializer를 이용한 값 복사를 설명했었습니다.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > XML Serializer 를 이용한 값 복사 ; <a target='tab' href='http://www.sysnet.pe.kr/2/0/577'>http://www.sysnet.pe.kr/2/0/577</a> </pre> <br /> 아쉽게도 <a target='tab' href='https://docs.microsoft.com/en-us/dotnet/core/api/system.collections.generic.dictionary-2'>Dictionary 제네릭 타입</a>의 경우 XmlSerializer를 사용하면, <br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > XmlSerializer xs = new XmlSerializer(typeof(Dictionary<string, int>)); </pre> <br /> 생성자에서 다음과 같은 예외가 발생합니다.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > System.NotSupportedException occurred HResult=0x80131515 Message=The type System.Collections.Generic.Dictionary`2[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] is not supported because it implements IDictionary. Source=System.Xml StackTrace: at System.Xml.Serialization.TypeScope.GetDefaultIndexer(Type type, String memberInfo) at System.Xml.Serialization.TypeScope.ImportTypeDesc(Type type, MemberInfo memberInfo, Boolean directReference) at System.Xml.Serialization.TypeScope.GetTypeDesc(Type type, MemberInfo source, Boolean directReference, Boolean throwOnError) at System.Xml.Serialization.ModelScope.GetTypeModel(Type type, Boolean directReference) at System.Xml.Serialization.XmlReflectionImporter.ImportTypeMapping(Type type, XmlRootAttribute root, String defaultNamespace) at System.Xml.Serialization.XmlSerializer..ctor(Type type, String defaultNamespace) at System.Xml.Serialization.XmlSerializer..ctor(Type type) at ConsoleApp1.Program.Main(String[] args) in C:\ConsoleApp1\ConsoleApp1\Program.cs:line 36 </pre> <br /> IDictionary를 구현한 타입은 지원하지 않기 때문입니다. (참고로, <a target='tab' href='https://www.sysnet.pe.kr/2/2/157'>DataContractSerializer를 사용하면 직렬화</a>가 됩니다.) 다행인 점은, Dictionary 타입도 ISerializable을 구현하고 있기 때문에 BinaryFormatter는 사용할 수 있습니다.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > using System; using System.Collections.Generic; using System.IO; using System.Runtime.Serialization.Formatters.Binary; namespace ConsoleApp1 { class Program { static void Main(string[] args) { Dictionary<string, int> dict = new Dictionary<string, int>(); dict.Add("5", 5); dict.Add("6", 6); <span style='color: blue; font-weight: bold'>Dictionary<string, int> dict2 = CloneData(dict);</span> dict.Remove("6"); <span style='color: blue; font-weight: bold'>foreach (var item in dict)</span> { Console.WriteLine(item.Value); } Console.WriteLine(); <span style='color: blue; font-weight: bold'>foreach (var item in dict2)</span> { Console.WriteLine(item.Value); } } public static TData CloneData<TData>(TData data) where TData : class { if (data == null) { return null; } MemoryStream ms = new MemoryStream(); BinaryFormatter xs = new BinaryFormatter(); xs.Serialize(ms, data); ms.Position = 0; return (TData)xs.Deserialize(ms); } } } /* // 출력 결과 5 5 6 */ </pre> <br /> 당연한 이야기지만, 위의 코드는 범용적으로 편리함 차원에서 유용할 뿐 성능이 필요한 곳에서는 개별 복사를 하는 것이 좋습니다.<br /> <br /> (<a target='tab' href='https://www.sysnet.pe.kr/bbs/DownloadAttachment.aspx?fid=1117&boardid=331301885'>첨부 파일은 이 글의 예제 코드를 포함</a>합니다.)<br /> </p><br /> <br /><hr /><span style='color: Maroon'>[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]</span> </div>
첨부파일
스팸 방지용 인증 번호
1420
(왼쪽의 숫자를 입력해야 합니다.)