Removes duplicate attributes (#18668)
authorMarek Safar <marek.safar@gmail.com>
Wed, 27 Jun 2018 13:53:24 +0000 (15:53 +0200)
committerJan Kotas <jkotas@microsoft.com>
Wed, 27 Jun 2018 13:53:24 +0000 (06:53 -0700)
src/System.Private.CoreLib/shared/System/ReadOnlySpan.Fast.cs
src/System.Private.CoreLib/shared/System/Span.Fast.cs

index cabda7a..4fb039a 100644 (file)
@@ -23,8 +23,6 @@ namespace System
     /// ReadOnlySpan represents a contiguous region of arbitrary memory. Unlike arrays, it can point to either managed
     /// or native memory, or to memory allocated on the stack. It is type- and memory-safe.
     /// </summary>
-    [DebuggerTypeProxy(typeof(SpanDebugView<>))]
-    [DebuggerDisplay("{ToString(),raw}")]
     [NonVersionable]
     public readonly ref partial struct ReadOnlySpan<T>
     {
index 40b461e..b3cfc8d 100644 (file)
@@ -23,8 +23,6 @@ namespace System
     /// Span represents a contiguous region of arbitrary memory. Unlike arrays, it can point to either managed
     /// or native memory, or to memory allocated on the stack. It is type- and memory-safe.
     /// </summary>
-    [DebuggerTypeProxy(typeof(SpanDebugView<>))]
-    [DebuggerDisplay("{ToString(),raw}")]
     [NonVersionable]
     public readonly ref partial struct Span<T>
     {