Beispiel #1
0
        static public bool IsOrphanHoldable <P>(this Holdable <P> item)
        {
            if (item.GetHolder() == null)
            {
                return(true);
            }

            return(false);
        }