示例#1
0
 internal MemoryGroupEnumerator(MemoryGroupView <T> memoryGroup)
 {
     this.memoryGroup = memoryGroup;
     this.count       = memoryGroup.Count;
     this.index       = -1;
 }
示例#2
0
 public MemoryOwnerWrapper(MemoryGroupView <T> view, int index)
 {
     this.view  = view;
     this.index = index;
 }