Exemplo n.º 1
0
        public ListDependency(PropertyInfo prop, PropShowType type) : base(prop, type)
        {
            ReflectCore rc = new ReflectCore();

            GenericDependency = rc.ReflectProperty(GenericType);
        }
Exemplo n.º 2
0
 public ClassDependency(PropertyInfo propertyInfo, PropShowType type) : base(propertyInfo, type)
 {
 }
Exemplo n.º 3
0
 public Dependency(PropertyInfo propertyInfo, PropShowType type)
 {
     propInfo = propertyInfo;
     showType = type;
 }
Exemplo n.º 4
0
 public EnumDependency(PropertyInfo propertyInfo, PropShowType type, List <EnumStruct> enumStructList) : base(propertyInfo, type)
 {
     EnumStructList = enumStructList;
 }