Tagged Questions

4
votes
3answers
356 views

How do strings work when shallow copying something in C#?

Strings are considered reference types yet can act like values. When shallow copying something either manually or with the MemberwiseClone(), how are strings handled? Are they considred separate and ...
3
votes
5answers
322 views

Copying objects to 'this' object in C#

I have a certain hirerchy of classes that needs the capeability to copy all public properties from one object to another. Each class has a certain set of public properties that might differ from any ...