System.Collections.ListDictionaryInternal.NodeEnumerator.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.NodeEnumerator