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

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/System.Private.CoreLib/shared/System/Collections/IDictionary.cs')
-rw-r--r--src/System.Private.CoreLib/shared/System/Collections/IDictionary.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/System.Private.CoreLib/shared/System/Collections/IDictionary.cs b/src/System.Private.CoreLib/shared/System/Collections/IDictionary.cs
index b934c2399..b077c9192 100644
--- a/src/System.Private.CoreLib/shared/System/Collections/IDictionary.cs
+++ b/src/System.Private.CoreLib/shared/System/Collections/IDictionary.cs
@@ -15,7 +15,7 @@ namespace System.Collections
// Interfaces are not serializable
// The Item property provides methods to read and edit entries
// in the Dictionary.
- Object this[Object key]
+ object this[object key]
{
get;
set;
@@ -35,11 +35,11 @@ namespace System.Collections
// Returns whether this dictionary contains a particular key.
//
- bool Contains(Object key);
+ bool Contains(object key);
// Adds a key-value pair to the dictionary.
//
- void Add(Object key, Object value);
+ void Add(object key, object value);
// Removes all pairs from the dictionary.
void Clear();
@@ -55,6 +55,6 @@ namespace System.Collections
// Removes a particular key from the dictionary.
//
- void Remove(Object key);
+ void Remove(object key);
}
}