Newer
Older
DNA / corlib / System.Collections / IDictionaryEnumerator.cs
@Chris Bacon Chris Bacon on 21 Jan 2012 211 bytes First commit
#if !LOCALTEST

using System;

namespace System.Collections {
	public interface IDictionaryEnumerator : IEnumerator {

		DictionaryEntry Entry { get; }
		object Key { get; }
		object Value { get; }

	}
}
#endif