Exemplo n.º 1
0
        public TItemType this[TKeyType value]
        {
            get
            {
                ModelMemberCollection <TItemType, TKeyType> .Validate(value);

                return(this.Find(value, true));
            }
        }
Exemplo n.º 2
0
        public TItemType Find(TKeyType value)
        {
            ModelMemberCollection <TItemType, TKeyType> .Validate(value);

            return(this.Find(value, false));
        }