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

DictionaryEntry.cs « System.Collections « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e6cafab7cdadd72381504440bc43068cd9764c66 (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
using System;

namespace System.Collections {

	[Serializable]
	public struct DictionaryEntry {
		private object key;
		private object val;

		public DictionaryEntry( object k, object value) {
			key = k;
			val = value;
		}
		
		public object Key {
			get {return key;}
			set {key = value;}
		}
		public object Value {
			get {return val;}
			set {val = value;}
		}
	}
}