Files
2026-06-04 11:42:34 +02:00

32 lines
688 B
C#

using System;
using System.Diagnostics;
namespace System.Collections.Generic
{
// Token: 0x020000F9 RID: 249
internal sealed class CollectionDebuggerView<T>
{
// Token: 0x06000C62 RID: 3170 RVA: 0x000383F0 File Offset: 0x000365F0
public CollectionDebuggerView(ICollection<T> 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<T> c;
}
}