- 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.
Lure Of Chaos 03.02.2011 12:34 # +1
abatishchev 03.02.2011 12:50 # 0
Lure Of Chaos 03.02.2011 12:54 # +1
а сейчас либо юзнули и обнаружили у себя NotImplementedException,
либо просто из любопытства глянули в либу Containers.
Мистер Хэнки 03.02.2011 21:22 # +1
guest 04.02.2011 00:17 # 0
istem 04.02.2011 15:40 # +1
от родителей что ли?!
absolut 04.02.2011 16:04 # +4