728x90
//얕은 복사 돼서 수동으로 값 대입
foreach (KeyValuePair<string, int> temp in concurrentdictionary_1)
	concurrentdictionary_2[temp.Key] = temp.Value;

하....깊은 복사 얕은 복사를 잊고 잊다가 삽질 하다가 알아버렸다...후...

concurrentdictionary 복사는 이렇게 하면 간단하다.

다른 방법도 있지만 내가 이해 할 수 있는 방법 중에는 이 방법이 가장 간단 했다.

 

시간이 된다면 아래의 내용도 읽어 보자.

m.blog.naver.com/adonise007/220578209008

 

c# 깊은 복사(Deep Copy) VS 얕은 복사(Shallow Copy)

* 깊은 복사(Deep Copy) VS 얕은 복사(Shallow Copy) 1. Assign (할당) 보통 생성된 객체를 다른 변...

blog.naver.com

 

출처: codingcoding.tistory.com/228

728x90

+ Recent posts