System.Collections.ListDictionaryInternal.NodeKeyValueCollection.NodeKeyValueEnumerator.Reset C# (CSharp) Method

Reset() public method

public Reset ( ) : void
return void
                public void Reset() {
                    if (version != list.version) {
                        throw new InvalidOperationException(Environment.GetResourceString("InvalidOperation_EnumFailedVersion"));
                    }
                    start = true;
                    current = null;
                }
            }        
ListDictionaryInternal.NodeKeyValueCollection.NodeKeyValueEnumerator