示例#1
0
文件: GCTest.cs 项目: yaoya/ILRuntime
        public void FillCollections()
        {
            //cb = new ArrayCollectionB();
            //ca = new ArrayCollectionA(cb);

            cb = new ListCollectionB();
            ca = new ListCollectionA(cb);
        }
示例#2
0
文件: GCTest.cs 项目: yaoya/ILRuntime
 public ListCollectionA(ListCollectionB lcb)
 {
     m_list   = new List <IntWarp>(100000000);
     this.lcb = lcb;
     lcb.TestFun();
 }
示例#3
0
文件: GCTest.cs 项目: yaoya/ILRuntime
 public void CallGC()
 {
     cb = null;
     ca = null;
 }