Welcome to mirror list, hosted at ThFree Co, Russian Federation.

IDictionaryEnumerator.cs « System.Collections « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fb1998d55f07050a793ce1607825c779d694178b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
//
// System.Collections.IDictionaryEnumerator
//
// Author:
//    Vladimir Vukicevic (vladimir@pobox.com)
//
// (C) 2001 Vladimir Vukicevic
//

using System;

namespace System.Collections {

	public interface IDictionaryEnumerator : IEnumerator {
		DictionaryEntry Entry { get; }
		object Key { get; }
		object Value { get; }
	}
}