System.Collections.ListDictionaryInternal.NodeKeyValueCollection.NodeKeyValueEnumerator.MoveNext C# (CSharp) Méthode

MoveNext() public méthode

public MoveNext ( ) : bool
Résultat bool
                public bool MoveNext() {
                    if (version != list.version) {
                        throw new InvalidOperationException(Environment.GetResourceString("InvalidOperation_EnumFailedVersion"));
                    }
                    if (start) {
                        current = list.head;
                        start = false;
                    }
                    else {
                        if( current != null) {
                            current = current.next;
                        }
                    }
                    return (current != null);
                }
ListDictionaryInternal.NodeKeyValueCollection.NodeKeyValueEnumerator