Exemplo n.º 1
0
 /// <summary>
 /// Used internally and for testing. Use `new ObjectAddressSet(heap)` instead.
 /// </summary>
 public ObjectAddressSet(HeapIndex index)
 {
     this.index     = index;
     segmentBitsets = index.CreateSegmentTable(s => new BitArray(s));
 }
Exemplo n.º 2
0
 public ObjectAddressSet(ClrHeap heap) : this(HeapIndex.Create(heap))
 {
 }