Skip to content

Commit

Permalink
Add DebuggerDisplay to ListDictionaryInternal (#91224)
Browse files Browse the repository at this point in the history
  • Loading branch information
arturek committed Aug 28, 2023
1 parent 602db78 commit 00838f3
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Diagnostics;
using System.Runtime.CompilerServices;

namespace System.Collections
Expand All @@ -8,6 +9,7 @@ namespace System.Collections
/// Implements <see cref="IDictionary"/> using a singly linked list.
/// Recommended for collections that typically include fewer than 10 items.
/// </summary>
[DebuggerDisplay("Count = {count}")]
[Serializable]
[TypeForwardedFrom("mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089")]
// Needs to be public to support binary serialization compatibility
Expand Down

0 comments on commit 00838f3

Please sign in to comment.