vote up 0 vote down star

Hi,

"Operation is not valid due to the current state of the object" exception is thrown at .Clone() operation in .net.

I'm using framework 2.0.

Any ideas what the reason could be.

Thanks in advance.

ravi

flag
What are you trying to clone? – Jon Skeet Apr 10 at 6:55
It may be helpful if you at least mentioned the type of the object being cloned, and even better, told us what had happened to it up to that point. The error itself is extremely generic, as there are plenty of reasons why objects can't be cloned at times. – GWLlosa Apr 10 at 13:44

1 Answer

vote up 1 vote down

Your question unfortunately doesn't contain enough information to be given a straight answer.

However, you could definitely try to analyze the Clone method of the object throwing exceptions at you using Reflector.

link|flag
Code fails at the following statement. installmentPeriod = (DatePeriod)period.Clone(); where period is inherited from ICloneable interface. This is hapening while I'm debugging the code. Can Reflector be used while debugging – Ravi Apr 10 at 7:41
Thanks for your help. I found the answer for the question. Issue was there is an exception thrown in one of the methods during cloning. Thanks again. – Ravi Apr 10 at 8:50

Your Answer

Get an OpenID
or

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