how to make a copy of object

  • Thread starter Thread starter keith
  • Start date Start date
K

keith

Is there any way to copy an object which could be
e.g. a panel containing several controls?

Thanks
 
Kieth,

If the object implements the ICloneable interface then you can call the
Clone method to get a copy.
 
Back
Top