我正在尝试创建一个
IEnumrable<PropertyInfo>
iv'e 有一个名为 Disassemble 的方法,它递归地迭代抛出一个给定的对象及其属性的所有子对象。
请不要担心 INameValueWrapper 类型的内部包装对象
下面的问题是,当我遇到一个类属性时,我也不想在其上调用 Disassemble 并将其添加到 IEnumrable 的同一迭代中,当在我放置注释的地方调用它时,Dissasemble 不会再次发生: // 问题就在这里。
public static IEnumerable<T> Dissasemble<T>(this object sourceObj) where T : INameValueWrapper
{
var properties = sourceObj.GetType().GetProperties();
foreach (var prop in properties)
{
var wrapper = (T)prop.WrapPropertyInfo(sourceObj);
yield return wrapper;
if (wrapper is CollectionPropertyInfoWrapper)
{
var colWrapper = wrapper as CollectionPropertyInfoWrapper;
var collection = (IList)colWrapper.Value;
int index = 0;
foreach (var item in collection)
{
yield return (T)item.WrapItem(collection, index + 1);
index++;
}
}
else
{
var propWrapper = wrapper as PropertyInfoWrapper;
if (!propWrapper.IsPrimitive)
{
var childObject = prop.GetValue(sourceObj);
childObject.Dissasemble<T>(); // here is the problem
}
}
}
yield break;
}
1)为什么它没有被调用并添加到迭代中?
2)围绕这个问题的工作是什么?,
i could call childObject.Dissasemble<T>().ToList()
and then iterate that collection calling yield return on it's items
but that seems like re doing something i already did.
提前致谢。