.net - Should I provide a deep clone when implementing ICloneable? -


it unclear me msdn documentation if should provide deep or shallow clone when implementing icloneable. preferred option?

short answer: yes.

long answer: don't use icloneable. because .clone isn't defined being shallow or deep clone. should implement own iclone interface, , describe how clone should work.


Comments

Popular posts from this blog

windows - Why does Vista not allow creation of shortcuts to "Programs" on a NonAdmin account? Not supposed to install apps from NonAdmin account? -

c++ - How do I get a multi line tooltip in MFC -

unit testing - How to mock PreferenceManager in Android? -