I want to be able use reflection to loop through the properties of an object that DO NOT implement an interface
Essentially I want to achieve the opposite of this How do I use reflection to get properties explicitly implementing an interface?
The reason is I want to map objects to another object where any properties that are not defined by an interface are added instead to a List of KeyValuePairs
.