| 1234567891011121314151617181920 |
- // -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
- //
- // System.Collections.IDictionaryEnumerator
- //
- // Author:
- // Vladimir Vukicevic ([email protected])
- //
- // (C) 2001 Vladimir Vukicevic
- //
- using System;
- namespace System.Collections {
- public interface IDictionaryEnumerator : IEnumerator {
- DictionaryEntry Entry { get; }
- object Key { get; }
- object Value { get; }
- }
- }
|