public void FillCollections() { //cb = new ArrayCollectionB(); //ca = new ArrayCollectionA(cb); cb = new ListCollectionB(); ca = new ListCollectionA(cb); }
public ListCollectionA(ListCollectionB lcb) { m_list = new List <IntWarp>(100000000); this.lcb = lcb; lcb.TestFun(); }
public void CallGC() { cb = null; ca = null; }