how to set properties when creating object c# code example
Example: c# object set property
myObject.GetType().GetProperty(property).SetValue(myObject, "Bob", null);
myObject.GetType().GetProperty(property).SetValue(myObject, "Bob", null);