Fastest Way to do Shallow Copy in C#
This is a complex subject with lots of possible solutions and many pros and cons to each. There is a wonderful article here that outlines several different ways of making a copy in C#. To summarize: Clone Manually Tedious, but high level of control. Clone with MemberwiseClone Only creates a shallow copy, i.e. for reference-type … Read more