示例#1
0
 public ArrayListCursor(ArrayList <T> arrayRef, ArrayListCursorBehavior behavior)
 {
     this.ArrayRef       = arrayRef;
     this.SelectedHandle = 0;
     Behavior            = behavior;
 }
示例#2
0
 public ArrayListCursor(ArrayList <T> arrayRef, int startingPosition, ArrayListCursorBehavior behavior)
 {
     this.ArrayRef       = arrayRef;
     this.SelectedHandle = startingPosition;
     Behavior            = behavior;
 }
示例#3
0
 public ArrayListCursor(ArrayList <T> arrayRef)
 {
     this.ArrayRef       = arrayRef;
     this.SelectedHandle = 0;
     Behavior            = ArrayListCursorBehavior.Stop;
 }