From b7af5779a1cc6664e6de63c9d999f366eaa12a93 Mon Sep 17 00:00:00 2001 From: Alexander Radchenko Date: Tue, 13 Dec 2016 02:27:49 +0700 Subject: [PATCH] // BLOCKED (do not add now): [EditorBrowsable(EditorBrowsableState.Never)] Commit migrated from https://github.com/dotnet/coreclr/commit/81033d3d863004e2535e08b7b78b7dda35228253 --- src/coreclr/src/mscorlib/src/System/Collections/DictionaryEntry.cs | 2 +- src/coreclr/src/mscorlib/src/System/Collections/Generic/KeyValuePair.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/coreclr/src/mscorlib/src/System/Collections/DictionaryEntry.cs b/src/coreclr/src/mscorlib/src/System/Collections/DictionaryEntry.cs index cd8df7f..3ee392b 100644 --- a/src/coreclr/src/mscorlib/src/System/Collections/DictionaryEntry.cs +++ b/src/coreclr/src/mscorlib/src/System/Collections/DictionaryEntry.cs @@ -52,7 +52,7 @@ namespace System.Collections { } } - //[EditorBrowsable(EditorBrowsableState.Never)] + // BLOCKED (do not add now): [EditorBrowsable(EditorBrowsableState.Never)] public void Deconstruct(out object key, out object value) { key = Key; diff --git a/src/coreclr/src/mscorlib/src/System/Collections/Generic/KeyValuePair.cs b/src/coreclr/src/mscorlib/src/System/Collections/Generic/KeyValuePair.cs index ea0f183..ad9f747 100644 --- a/src/coreclr/src/mscorlib/src/System/Collections/Generic/KeyValuePair.cs +++ b/src/coreclr/src/mscorlib/src/System/Collections/Generic/KeyValuePair.cs @@ -63,7 +63,7 @@ namespace System.Collections.Generic { return StringBuilderCache.GetStringAndRelease(s); } - //[EditorBrowsable(EditorBrowsableState.Never)] + // BLOCKED (do not add now): [EditorBrowsable(EditorBrowsableState.Never)] public void Deconstruct(out TKey key, out TValue value) { key = Key; -- 2.7.4