문제

I have the code:

IContainer container = ...;
IContainer copy = container;

But I think, it doesn't make a deep copy of this IContainer.

Does somebody know how to make a deep copy of an IContainer?

도움이 되었습니까?

해결책

You should create new container, similar to original one, and then copy from one to another by IPacket as if you do normal read/write.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top