是否存在使用块中的对象的任何方式,在运行时和动态中使用对象找到它 像这样
using (var grandfather = new human())
{
using (var father = new human())
{
using (var son = new human())
{
....
}
}
}
现在我想(儿子找父亲),(父亲找祖父)等等... 更新: 没有直接引用父母 更新: 考虑一下,我可以用任何方式修改人类课程