C# Copy an object by value

5k Views Asked by At

I have an Object with many properties and i need to create a copy of that object in each iteration such that all properties copied in new born object with their last set value. (I can't Copy all properties and their values one by one, because my object is actually a custom user control which has many properties and I don't know all of them!)

1

There are 1 best solutions below

0
On

You can use this extension method to copy all object fields and properties.There can be some errors when you try to copy fields and properties,that are reference type.

public static T CopyObject<T>(this T obj) where T : new()
        {
            var type = obj.GetType();
            var props = type.GetProperties();
            var fields = type.GetFields();
            var copyObj = new T();
            foreach (var item in props)
            {
                item.SetValue(copyObj, item.GetValue(obj));
            }
            foreach (var item in fields)
            {
                item.SetValue(copyObj, item.GetValue(obj));
            }
            return copyObj;
        }