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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/corlib/System.Collections/DictionaryEntry.cs')
-rw-r--r--mcs/class/corlib/System.Collections/DictionaryEntry.cs24
1 files changed, 0 insertions, 24 deletions
diff --git a/mcs/class/corlib/System.Collections/DictionaryEntry.cs b/mcs/class/corlib/System.Collections/DictionaryEntry.cs
deleted file mode 100644
index e6cafab7cda..00000000000
--- a/mcs/class/corlib/System.Collections/DictionaryEntry.cs
+++ /dev/null
@@ -1,24 +0,0 @@
-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;}
- }
- }
-}