IBindableIterator.MoveNext Method

Definition

Moves the iterator forward to the next item and returns HasCurrent.

public:
 bool MoveNext();
bool MoveNext();
public bool MoveNext();
function moveNext()
Public Function MoveNext () As Boolean

Returns

Boolean

bool

true if the iterator refers to a valid item that is in the collection; otherwise, false.

Remarks

This interface supports the creation of data bindable collections in C++. When programming with .NET, you should use ObservableCollection(Of T) or implement IList and INotifyCollectionChanged.

Applies to

See also