コード例 #1
0
 public bool hasNext()
 {
     return((index < bookShelf.GetLength()) ? true : false);
 }
コード例 #2
0
 public bool MoveNext()
 {
     _index++;
     return(_index < _bookShelf.GetLength());
 }