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/DictionaryEntry.cs')
-rw-r--r--src/System.Private.CoreLib/shared/System/Collections/DictionaryEntry.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/System.Private.CoreLib/shared/System/Collections/DictionaryEntry.cs b/src/System.Private.CoreLib/shared/System/Collections/DictionaryEntry.cs
index d0cbcb666..eabb01376 100644
--- a/src/System.Private.CoreLib/shared/System/Collections/DictionaryEntry.cs
+++ b/src/System.Private.CoreLib/shared/System/Collections/DictionaryEntry.cs
@@ -16,18 +16,18 @@ namespace System.Collections
#endif
public struct DictionaryEntry
{
- private Object _key; // Do not rename (binary serialization)
- private Object _value; // Do not rename (binary serialization)
+ private object _key; // Do not rename (binary serialization)
+ private object _value; // Do not rename (binary serialization)
// Constructs a new DictionaryEnumerator by setting the Key
// and Value fields appropriately.
- public DictionaryEntry(Object key, Object value)
+ public DictionaryEntry(object key, object value)
{
_key = key;
_value = value;
}
- public Object Key
+ public object Key
{
get
{
@@ -40,7 +40,7 @@ namespace System.Collections
}
}
- public Object Value
+ public object Value
{
get
{