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