DoubleCollection.Enumerator.MoveNext メソッド
定義
列挙子をコレクションの次の要素に進めます。Advances the enumerator to the next element in the collection.
public:
virtual bool MoveNext();
public bool MoveNext ();
abstract member MoveNext : unit -> bool
override this.MoveNext : unit -> bool
Public Function MoveNext () As Boolean
戻り値
列挙子が次の要素に正常に進んだ場合は true
。それ以外の場合は false
。true
if the enumerator successfully advanced to the next element; otherwise, false
.
実装
注釈
このメソッドは false
、列挙子がコレクションの最後の要素を渡した場合にもを返します。This method also returns false
if the enumerator has passed the final element in the collection.