Add missing Debugger and ReliabilityContract attributes to .NET 4 types
[mono.git] / mcs / class / corlib / System.Threading / SemaphoreSlim.cs
index 455951ad78d7f1f5db2b8883125e2b966884723e..f766933a103582d65930812c202755a3079f4389 100644 (file)
@@ -28,6 +28,7 @@ using System.Diagnostics;
 #if NET_4_0
 namespace System.Threading
 {
+       [System.Diagnostics.DebuggerDisplayAttribute ("Current Count = {currCount}")]
        public class SemaphoreSlim : IDisposable
        {
                const int spinCount = 10;