- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
namespace Containers
{
    public class TBinaryWaitingQueue<TItem> where TItem : struct
    {
        private readonly TBinaryQueue<TItem> _queue;
        TBinaryWaitingQueue(int amountOfitem)
        {
            _queue = new TBinaryQueue<TItem>(amountOfitem);
        }
        public void Enqueue(TItem[] items)
        {
            throw new NotImplementedException();
        }
        public void Enqueue(TItem[] items, int beginItem, int amountOfItem)
        {
            throw new NotImplementedException();
        }
        public void Dequeue(TItem[] items, int beginItem, int amountOfItem)
        {
            throw new NotImplementedException();
        }
        public TItem[] Dequeue(int amountOfItem)
        {
            throw new NotImplementedException();
        }
    }
}
                                 
        
            Досталось в наследство от предков. Этому коду уже года 4.
        
        
а сейчас либо юзнули и обнаружили у себя NotImplementedException,
либо просто из любопытства глянули в либу Containers.
от родителей что ли?!