1
如何更新屬性的所有引用,以便在引用屬性之前查看新對象?我試着用Google搜索答案並沒有發現太多。因此,我正在發佈信息,看看社區是否知道解決此問題的簡單方法,或者甚至可能。如果我不能輕鬆地做到這一點,我會找到所有的參考資料,並沿着列表直到所有的參考文獻都被更新。在這個類中有更多的屬性,這就是爲什麼我試圖找到一個簡單的解決方案。如何更新已移動到對象內部的屬性的引用
我有這個
Structure{
public int OrganizationID; 100+ References
}
我需要這個
Structure{
public OrganizationInformation OrganizationInformation;
}
OrganizationInformation{
public int OrganizationId;
}
請看看http://stackoverflow.com/questions/2756280/how-to-pull-a-method-out-of-its-class-and-into-a-new-or-existing – Marusyk