| 我的代码是: 
 [C#] 纯文本查看 复制代码 public partial class MovList
	{
	public int ID { get; set; }
	public int MovDoletID { get; set; }
	public int MovQisimID { get; set; }
	public int MovImagesID { get; set; }
	public int MovTewsiye { get; set; }
	public int MovTewsiyeImgID { get; set; }
	public int MovInfoID { get; set; }
	public int MovAwat { get; set; }
	public DateTime MovAddTime { get; set; }
	}
 [C#] 纯文本查看 复制代码                 MovList movlist = new MovList();
	List<MovList> info = getMovlist();//返回值是对的
                PropertyInfo[] modelPorp = movlist.GetType().GetProperties();
                for ( int i = 0 ; i < info.Count ; i++ )
                {
                    for ( int di = 0 ; di < modelPorp.Length ; di++ )
                    {
                        MovList isInfoName = info[i];
                        PropertyInfo[] metList= isInfoName.GetType().GetProperties();\
                        string metName = metList[di].Name;
                        info[i].metName;// 这样写是不行的
                    }
 info.metName;// 这样写是不行的
 这里怎么写才能获取需要的数据啊。。。。
 
 |