循环遍历一组对象c#

时间:2013-06-27 16:53:56

标签: c# reflection

我将一个对象作为参数传递给我的函数,该对象包含一个类型为FeatureItemInfo的对象列表。

FeatureItemInfo是一个具有以下属性的类:

 Name, Value , Type , DisplayOrder, Column

我想遍历列表并显示每个<FeatureItemInfo>对象的属性。

这是我到目前为止所能想到的。但是我无法获得featureIteminfo的值。

这是我的功能:

 public static TagBuilder BuildHtml(StringBuilder  output, object model)
    {
     if (model != null)
     {
         foreach (var indexedItem in model.GetType().GetProperties().Select((p, i) => new { item = p, Index = i }))
         {
             var Colval = (int)indexedItem.item.GetType().GetProperty("Column").GetValue(indexedItem.item, null);
......
         }

      }
    }

2 个答案:

答案 0 :(得分:3)

应该是:

 (int)indexedItem.item.GetValue(model, null);

您的item媒体资源 IS PropertyInfo对象。您可以在其上调用GetValue(),传递该类的实例,以获取该属性的值。

indexedItem.item.GetType().GetProperty("Column")

上面的代码将在PropertyInfo对象上查找属性“Column”(提示:PropertyInfo没有“Column”属性)。


更新:根据您的评论,model实际上是一组对象。如果是这种情况,您可能应该在函数签名中更明确地使用它:

public static TagBuilder BuildHtml( StringBuilder output, IEnumerable model )

现在,让我们来看看你的循环:

foreach (var indexedItem in model.GetType().GetProperties().Select((p, i) => new { item = p, Index = i }))

这实际上是做什么的:

IEnumerable<PropertyInfo> l_properties = model.GetType().GetProperties();
var l_customObjects = l_properties.Select( 
        (p, i) =>
            new { 
                item = p, /* This is the PropertyInfo object */
                Index = i /* This is the index of the PropertyInfo 
                             object within l_properties */
            }
    )
foreach ( var indexedItem in l_customObjects )
{
    // ...
}

这是从模型对象获取属性列表,然后迭代这些属性(或者更确切地说,包含这些属性的匿名对象)。

我认为你真正想要的是更像这样的东西:

// This will iterate over the objects within your model
foreach( object l_item in model )
{
    // This will discover the properties for each item in your model:
    var l_itemProperties = l_item.GetType().GetProperties();
    foreach ( PropertyInfo l_itemProperty in l_itemProperties )
    {
        var l_propertyName = l_itemProperty.Name;
        var l_propertyValue = l_itemProperty.GetValue( l_item, null );
    }

    // ...OR...

    // This will get a specific property value for the current item:
    var l_columnValue = ((dynamic) l_item).Column;
    // ... of course, this will fail at run-time if your item does not
    // have a Column property, unlike the foreach loop above which will
    // simply process all properties, whatever their names
}

答案 1 :(得分:2)

考虑的另一种方法是使用dynamic直接获取属性而不反射:

public static TagBuilder BuildHtml(StringBuilder  output, object model)
{
    if (model != null)
    {
        var Colval = ((dynamic)model).Column;
    }
}