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 refer to the same object when the object is changed here is my code

public void Do(object undoState)
    {
        _index += 1;
        if (_buffer.Count > _index)
            _buffer.RemoveRange(_index, _buffer.Count - _index);
        _buffer.Add(undoState);
    }

I want to copy the UndoState object to a new object and added to the buffer

thank you

link|improve this question

1  
What you have stated here "take a copy of this object, so when I added to a list it won't refer to the same object" is a Deep copy wherein you do not simply create a copy of the reference to the Object but create a new object and copy the underlying values. – Lloyd Jan 11 at 14:25
feedback

1 Answer

up vote 2 down vote accepted

implement the ICloneable interface, and add your copy logic into it. Now instead of receiving an object in your Do method, use ICloneable.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.