summaryrefslogtreecommitdiff
path: root/src/mscorlib/shared/System/MemoryDebugView.cs
blob: 761d558cc61b6ce1cb8dda1cef1b7543f90aff5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

using System.Diagnostics;

namespace System
{
    internal sealed class MemoryDebugView<T>
    {
        private readonly ReadOnlyMemory<T> _memory;

        public MemoryDebugView(Memory<T> memory)
        {
            _memory = memory;
        }

        public MemoryDebugView(ReadOnlyMemory<T> memory)
        {
            _memory = memory;
        }

        [DebuggerBrowsable(DebuggerBrowsableState.RootHidden)]
        public T[] Items
        {
            // This is a work around since we cannot use _memory.ToArray() due to
            // https://devdiv.visualstudio.com/DevDiv/_workitems?id=286592
            get
            {
                if (_memory.DangerousTryGetArray(out ArraySegment<T> segment))
                {
                    T[] array = new T[_memory.Length];
                    Array.Copy(segment.Array, segment.Offset, array, 0, array.Length);
                    return array;
                }
                return Array.Empty<T>();
            }
        }
    }
}