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