Thank you ahead of time.
Problem: I have x different class objects that contains y amount of different properties (y properties will rarely be the same among the x objects and nearly all properties will be strings). I need to be able to create a copy of the object that contains the same data (minus one property that will be changed later in the code) but the two object do not reference the same memory location.
Question:I am looking for a way to create a generic method that is able to copy the information from one object into another (or better yet return the copied object. I figure this may be possible with the use of reflections but I do not have any idea how to do this successfully. Is this possible?