Esempio n. 1
0
 public WeakCollection()
 {
     _list = new FastCollection <WeakReference>();
 }
Esempio n. 2
0
 public WeakCollection(IEnumerable <T> items)
 {
     _list = new FastCollection <WeakReference>(items.Select(x => new WeakReference(x)));
 }
Esempio n. 3
0
 public WeakCollection(int capacity)
 {
     _list = new FastCollection <WeakReference>(capacity);
 }