Is it possible to access an object from a member object without transferring and saving the link? In the example below, can a given chair object gain access to a home object without the house passing a link to the member hierarchy?
public class Chair { public string Material { get; set; } public Chair() { Material = "Wood"; } public bool IsInMiami() {
The answer may be through reflection, but I have no clue how to do this, or there is another way to achieve the same.
Thank you in advance
source share