Ejemplo n.º 1
0
 internal DataSegment(DataStream outerInstance, int minLength)
 {
     this.outerInstance = outerInstance;
     allocate(minLength);
 }
Ejemplo n.º 2
0
 internal IterateSegments(DataStream outerInstance, DataSegment firstSegment)
 {
     this.outerInstance  = outerInstance;
     this.firstSegment   = firstSegment;
     this.currentSegment = null;
 }
Ejemplo n.º 3
0
 internal DataSegment(DataStream outerInstance)
 {
     this.outerInstance = outerInstance;
 }