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

IDictionary.cs « System.Collections « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a03ab07d9040dbaced6acdca3f844fb86852742d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
//
// System.Collections.IDictionary
//
// Author:
//    Vladimir Vukicevic (vladimir@pobox.com)
//
// (C) 2001 Vladimir Vukicevic
//

using System;

namespace System.Collections {

	public interface IDictionary : ICollection {
		// properties

		bool IsFixedSize { get; }

		bool IsReadOnly { get; }

		object this[object key] { get; set; }

		ICollection Keys { get; }

		ICollection Values { get; }

		// methods

		void Add (object key, object value);

		void Clear ();

		bool Contains (object key);

		new IDictionaryEnumerator GetEnumerator ();

		void Remove (object key);
	}
}