コード例 #1
0
 public bool Remove(DeliveryHistoryEntry <OperationT> item)
 {
     throw new NotSupportedException(ERROR_MSG);
 }
コード例 #2
0
 public bool Contains(DeliveryHistoryEntry <OperationT> item)
 {
     return(InnerList.Contains(item));
 }
コード例 #3
0
 void IList <DeliveryHistoryEntry <OperationT> > .Insert(int index, DeliveryHistoryEntry <OperationT> item)
 {
     throw new NotSupportedException();
 }
コード例 #4
0
        //===================================
        #endregion

        #region ICollection<DeliveryHistoryEntry<OperationT>> Members
        //===================================

        public void Add(DeliveryHistoryEntry <OperationT> item)
        {
            throw new NotImplementedException();
        }
コード例 #5
0
 //===================================
 int IList <DeliveryHistoryEntry <OperationT> > .IndexOf(DeliveryHistoryEntry <OperationT> item)
 {
     return(InnerList.IndexOf(item));
 }