Example #1
0
 public DyCollectionEnumerable(DyObject[] arr, int start, int count, DyCollection obj)
 {
     this.arr   = arr;
     this.start = start;
     this.count = count;
     this.obj   = obj;
 }
Example #2
0
 public DyCollectionEnumerator(DyObject[] arr, int start, int count, DyCollection obj)
 {
     this.arr   = arr;
     this.start = start;
     this.count = count;
     this.obj   = obj;
     version    = obj.Version;
 }