// Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. #if !NET_4_6 using System.Collections.ObjectModel; namespace System.Runtime.CompilerServices { internal sealed class TrueReadOnlyCollection : ReadOnlyCollection { /// /// Creates instance of TrueReadOnlyCollection, wrapping passed in array. /// !!! DOES NOT COPY THE ARRAY !!! /// public TrueReadOnlyCollection(T[] list) : base(list) { } } } #endif