Example #1
0
 // Implement the IListIterator<T> interface.
 public bool MovePrev()
 {
     lock (list.SyncRoot)
     {
         return(iterator.MovePrev());
     }
 }
Example #2
0
 // Implement the IListIterator<T> interface.
 public bool MovePrev()
 {
     return(iterator.MovePrev());
 }