I use a third party control which exports some data to different formats. The control has a property ExportSettings. But it is read-only.
ExportSettings
I\'ve to manua
static void CopyProperties(object dest, object src) { foreach (PropertyDescriptor item in TypeDescriptor.GetProperties(src)) { item.SetValue(dest, item.GetValue(src)); } }