using System; using System.Diagnostics; namespace System.Collections.Generic { // Token: 0x020000F9 RID: 249 internal sealed class CollectionDebuggerView { // Token: 0x06000C62 RID: 3170 RVA: 0x000383F0 File Offset: 0x000365F0 public CollectionDebuggerView(ICollection col) { this.c = col; } // Token: 0x170001C5 RID: 453 // (get) Token: 0x06000C63 RID: 3171 RVA: 0x00038400 File Offset: 0x00036600 [DebuggerBrowsable(DebuggerBrowsableState.RootHidden)] public T[] Items { get { T[] array = new T[this.c.Count]; this.c.CopyTo(array, 0); return array; } } // Token: 0x0400035D RID: 861 private readonly ICollection c; } }