索引类型是集合。在类里定义的个属性。
获取属性
  System.Reflection.Assembly ass = System.Reflection.Assembly.LoadFile("filepath");
            Type t=ass.GetType("namespace.classname");
            object obj;
            object[] objs=new object[]{"customparas"};    
            obj = System.Activator.CreateInstance(t,objs);
            System.Reflection.PropertyInfo pro = t.GetProperty("PropertyInfo");