I would like to create a deep clone of a usercontrol in my program. How do this. thanks
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you use
MemberwiseClone()you will get a shallow copy which is probably not what you want as it will not be a true ‘replica’. If you don’t mind the twoUserControlssharing references to child objects thenMemberwiseClone()should do the trick. Otherwise you will have to write your own implementation to support your requirements.