What are the true benefits of ExpandoObject?Pankaj Rana11yAsked Feb 20, 2015, 8:29 AM1.3kLearn iOS ProgrammingWhat are the true benefits of ExpandoObject?
Vulpes11y agoPosted Feb 20, 2015, 9:12 AMThe benefit of an ExpandoObject is that you can add members to, or remove members from, it as run time.With a 'normal' object, all its members have to be declared at compile time and can't be removed at run time.0
VulpesPosted Feb 20, 2015, 9:12 AM
With a 'normal' object, all its members have to be declared at compile time and can't be removed at run time.