循环遍历泛型类的集合属性



虽然有很多问题已经发布,但似乎没有一个能帮助我解决我的问题。

我已经开始了一个新的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属性的命名空间,而不打印值

希望你们能给我指出正确的方向?

您可能想要递归地"潜入"条目属性。

注意,只是概念性的代码片段,不保证它能像我在这里写的那样工作:

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);
  }
}

打印"Props",执行:

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

在玩了代码并更多地理解了逻辑之后,我想到这就像在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() : ""));
                }
            }
        } 

相关内容

  • 没有找到相关文章

最新更新