1

我需要一个具有扩展搜索机制的通用列表,所以我创建了一个List<T>带有附加索引器的通用列表(base)。因此,如果 T 是一个对象,则列表允许基于字段获取项目。这是示例代码

public class cStudent
    {
      public Int32 Age { get; set; }
      public String Name { get; set; }
    }

TestList<cStudent> l_objTestList = new TestList<cStudent>();
l_objTestList.Add(new cStudent { Age = 25, Name = "Pramodh" });
l_objTestList.Add(new cStudent { Age = 28, Name = "Sumodh" });
cStudent l_objDetails = l_objTestList["Name", "Pramodh"];

还有我的通用清单

class TestList<T> : List<T>
    {
          public T this[String p_strVariableName, String p_strVariableValue]
           {
             get
               {
                 for (Int32 l_nIndex = 0; l_nIndex < this.Count; l_nIndex++)
                  {
                       PropertyInfo l_objPropertyInfo = (typeof(T)).GetProperty(p_strVariableName);
                       object l_obj = l_objPropertyInfo.GetValue("Name", null);  // Wrong Statement -------> 1                
                  }
                return default(T);
               }
           }
    }

但我无法获得该属性的值,它会抛出“目标异常”。

请帮我解决这个问题。

4

1 回答 1

2

这行代码需要是这样的......

object l_obj = l_objPropertyInfo.GetValue("Name", null);

=>

object l_obj = l_objPropertyInfo.GetValue(this[l_nIndex], null);

GetValue 函数的第一个参数是您要从中检索属性值的对象实例。

于 2012-12-24T05:29:46.447 回答