2004-05-01 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
[mono.git] / mcs / class / corlib / System.Collections / IDictionaryEnumerator.cs
1 // -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
2 //
3 // System.Collections.IDictionaryEnumerator
4 //
5 // Author:
6 //    Vladimir Vukicevic (vladimir@pobox.com)
7 //
8 // (C) 2001 Vladimir Vukicevic
9 //
10
11 using System;
12
13 namespace System.Collections {
14
15         public interface IDictionaryEnumerator : IEnumerator {
16                 DictionaryEntry Entry { get; }
17                 object Key { get; }
18                 object Value { get; }
19         }
20 }