0
votes
votes
1 answers
building lists with .AddRange and deep cloning
I found that List<T>.AddRange() uses a shallow copy. To make it a deep copy I wrote code to clone via serialization because I saw some suggestions on the internet that suggested ICloneable might be a hassle since you have to guarante ...
