From: Alexander Radchenko Date: Mon, 12 Dec 2016 19:27:49 +0000 (+0700) Subject: // BLOCKED (do not add now): [EditorBrowsable(EditorBrowsableState.Never)] X-Git-Tag: submit/tizen/20210909.063632~11030^2~8621^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b7af5779a1cc6664e6de63c9d999f366eaa12a93;p=platform%2Fupstream%2Fdotnet%2Fruntime.git // BLOCKED (do not add now): [EditorBrowsable(EditorBrowsableState.Never)] Commit migrated from https://github.com/dotnet/coreclr/commit/81033d3d863004e2535e08b7b78b7dda35228253 --- 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;