How do I copy a class in c# into a similar class but some destination public class properties need to be instantiated? Both classes were created using the xsd.exe tool. The class is complex (I only want to copy non-null public properties of the same property name and type) but many of the class public properties are classes themselves and need to be instantiated.(even a few levels deep).
I have found some code that copies non-null public properties but it can only copy simple types like string. Here is the code that fails on the first "subclass" public property.
Is Automapper the only thing that can do this? I prefer a native c# solution I can put in my library if possible and totally free.
public static void CopyTo(this object S, object T)
/* Simple extension method to copy all public properties. Works for any objects and does not require class to be [Serializable].
* Can be extended for other access level.
* If the two objects are of the same type, it would make more sense to make this a generic method with a single type parameter
* to enforce that. If they are not the same type, you'll have to handle the possibility that properties with the same name might
* have incompatible types. For example, S might have a property called "ID" of type int, while T's ID property might be a Guid
*/
{
foreach (var pS in S.GetType().GetProperties())
{
foreach (var pT in T.GetType().GetProperties())
{
if (pT.Name != pS.Name) continue;
(pT.GetSetMethod()).Invoke(T, new object[] { pS.GetGetMethod().Invoke(S, null) });
}
}
}