using System; using System.Diagnostics; namespace System.Collections.Generic { // Token: 0x020000FA RID: 250 internal sealed class CollectionDebuggerView { // Token: 0x06000C64 RID: 3172 RVA: 0x0003842C File Offset: 0x0003662C public CollectionDebuggerView(ICollection> col) { this.c = col; } // Token: 0x170001C6 RID: 454 // (get) Token: 0x06000C65 RID: 3173 RVA: 0x0003843C File Offset: 0x0003663C [DebuggerBrowsable(DebuggerBrowsableState.RootHidden)] public KeyValuePair[] Items { get { KeyValuePair[] array = new KeyValuePair[this.c.Count]; this.c.CopyTo(array, 0); return array; } } // Token: 0x0400035E RID: 862 private readonly ICollection> c; } }