Ejemplo n.º 1
0
 public DictionaryStackedQueue(IDictionary <TKey, TValue> dictionary)
 {
     __dic          = new Dictionary <TKey, TValue>(dictionary);
     __stackedQueue = new StackedQueue <TKey>();
 }
Ejemplo n.º 2
0
 public DictionaryStackedQueue(int capacity)
 {
     __dic          = new Dictionary <TKey, TValue>(capacity);
     __stackedQueue = new StackedQueue <TKey>(capacity);
 }