循环遍历Generic Class的集合属性

时间:2015-09-28 09:39:03

标签: c# generics reflection

虽然已经发布了许多问题,但似乎没有一个问题可以解决我的问题。

我已经开始了新的Generics / Reflection冒险,我只是试图了解语法和概念。

我有一个Generic类,其中包含X个属性,一个是集合,一切正常,但我在通过属性名从集合props中提取值时遇到问题。

foreach (var property in typeof(T).GetProperties())
{
    if (property.Name == "Props")
    {
        foreach (var item in (IEnumerable)property.GetValue(type, null))
        {
            var propertyName = "";
            var newValue = "";
            var oldValue = "";

            sbDescription.AppendLine(strDescriptionVals
               .Replace("{0}", (item.ToString() == "PropertyName") ? item.ToString() : "" + ", "));

            sbAllNotes.AppendLine(strAllNotes
               .Replace("{0}", (item.ToString() == "PropertyName") ? item.ToString() : "")
               .Replace("{1}", (item.ToString() == "NewValue") ? item.ToString() : "")
               .Replace("{2}", (item.ToString() == "OldValue") ? item.ToString() : ""));
        }
    }
}

正如你所看到的,我已经确定了属性Props,现在我想循环遍历它并按属性名称拉取值。

item.ToString()只打印class属性的名称空间而不是值

希望你善良的人能指出我正确的方向?

2 个答案:

答案 0 :(得分:2)

您可能希望递归“潜入”项目属性。

请注意,只有概念性代码片段,不能保证它在我写的时候起作用:

void Print(object value, string propertyName)
{
    if (property.PropertyType == typeof(string) || property.PropertyType.IsPrimitive)
    {
      sbAllNotes.AppnedLine(.. propertyName .. value ..);
    }
    else if ((typeof(IEnumerable).IsAssignableFrom(property.PropertyType)
    {
      PrintCollectioType((IEnumerable)value);
    }
    else
    {
      PrintComplexType(value);
    }
}

void PrintCollectioType(IEnumerable collection)
{
  foreach (var item in collection) 
  {
    Print(item, "Collection Item");
  }
}

void PrintComplexType(IEnumerable collection)
{
  foreach(var property in owner.GetType().GetProperties())
  {
    var propertyName = property.Name;
    var propertyValue = property.GetValue(owner);
    Print(item, propertyName);
  }
}

要打印“道具”,请执行:

var props = typeof(T).GetProperty("Props");
var propsValue = props.GetValue(rootObject);
Print(propsValue, "Root");

答案 1 :(得分:1)

在使用代码并更多地理解逻辑之后,我发现它就像" 获取类型和属性"在Props次迭代:

        //Get the collection property
        foreach (var property in typeof(T).GetProperties())
        {
            if (property.Name == "Props")
            {
                foreach (var item in (IEnumerable)property.GetValue(type, null))
                {
                    //Because props is a collection, Getting the type and property on each pass was essential
                    var propertyName = item.GetType().GetProperty("PropertyName").GetValue(item, null);
                    var newValue = item.GetType().GetProperty("NewValue").GetValue(item, null);
                    var oldValue = item.GetType().GetProperty("OldValue").GetValue(item, null);

                   sbDescription.AppendLine(strDescriptionVals
                       .Replace("{0}", (propertyName != null) ? propertyName.ToString() : "" + ", "));

                   sbAllNotes.AppendLine(strAllNotes
                       .Replace("{0}", (propertyName != null) ? propertyName.ToString() : "")
                       .Replace("{1}", (newValue != null) ? newValue.ToString() : "")
                       .Replace("{2}", (oldValue != null) ? oldValue.ToString() : ""));
                }
            }
        }