System.Collections.HashMap.GetEnumerator C# (CSharp) 메소드

GetEnumerator() 공개 메소드

public GetEnumerator ( ) : IDictionaryEnumerator
리턴 IDictionaryEnumerator
        public override IDictionaryEnumerator GetEnumerator() {
            IDictionaryEnumerator e = base.GetEnumerator();
            if (hasNullKey) {
                return new HashMapEnumerator(e, valueOfNullKey, 3);
            }
            else {
                return e;
            }
        }
#endif