Example #1
0
        static public bool CanSetAndGet(this PropInfoEX item)
        {
            if (item.CanSet() && item.CanGet())
            {
                return(true);
            }

            return(false);
        }
Example #2
0
        public override bool CanStore()
        {
            if (prop.CanSet())
            {
                return(true);
            }

            return(false);
        }