Tagged Questions

4
votes
3answers
365 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
326 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 ...
3
votes
4answers
274 views

Shallow Copy - Reference type anomalous nature

I cannot understand the output of the two sets of code snippets given below. How don't really get the concept of shallow copy. How can it be explained? Class: public class Person : ICloneable { ...
3
votes
4answers
1k views

How would you improve this shallow copying class?

I've written a class with a single static method that copies property values from one object to another. It doesn't care what type each object is, only that they have identical properties. It does ...
2
votes
1answer
60 views

C# Shallow copy Dictionary?

I need to shallow copy a dictionary in c#. For instance: Dictionary<int,int> flags = new Dictionary<int,int>(); flags[1] = 2; flags[2] = 3; flags[0] = 9001; Dictionary<int,int> ...
2
votes
2answers
756 views

Question about array shallow copy in C#

Just to make sure I'm understanding shallow copies of reference types correctly and that I'm not constructing a huge memory leak here: // Adds text to the beginning of the log RTB // Also keeps the ...
1
vote
4answers
160 views

Copy object properties: reflection or serialization - which is faster?

I have two objects of the same type and need to copy property values from one object to another. There are two options: Use reflection, navigate through the properties of the first object and copy ...
1
vote
4answers
248 views

Shallow vs. Deep Copies in Immutable Objects

Good morning, afternoon or night, When implementing a given class as an immutable one, with no methods or properties exposing private/internal fields in any way, is shallow copying a bad practice or ...
1
vote
2answers
327 views

.net memberwiseclone shallow copy not working

I am using this.MemberwiseClone() to create shallowcopy but it is not working. Please look at the code below. public class Customer { public int Id; public string Name; ...
1
vote
1answer
412 views

What are the implications of performing a shallow copy on an array in order to resize it?

If my understanding of deep and shallow copying is correct my question is an impossible one. If you have an array (a[10]) and perform a shallow copy (b[20]) wouldn't this be impossible as the data in ...
1
vote
3answers
503 views

Shallow Copy From Inherited Classes

Ok so I have an abstract base class called Product, a KitItem class that inherits Product and a PackageKitItem class that inherits KitItem. ie. Product KitItem : Product PackageKitItem : KitItem I ...
0
votes
1answer
79 views

Object Shallow Copy in C#

I know to perform a shallow copy in C# we could use MemberwiseClone() function but I have an object inside a function and I want to take a copy of this object, so when I added to a list it won't ...
0
votes
1answer
112 views

At what point in my code did this List<> become empty?

namespace Messages { public partial class Email { List<Document> attachments = new List<Document>(); protected void Page_Load(object sender, EventArgs e) { ...