合并主线最近几年来的主要更新,重点推进TinyHttpClient,替代HttpClient
大石头 authored at 2023-03-08 18:39:12
395.00 B
X_NET20
using System.Diagnostics;

namespace System.Collections
{
	internal sealed class CollectionDebuggerView
	{
		private readonly ICollection c;

		[DebuggerBrowsable(DebuggerBrowsableState.RootHidden)]
		public object[] Items
		{
			get
			{
				object[] o = new object[c.Count];
				c.CopyTo(o, 0);
				return o;
			}
		}

		public CollectionDebuggerView(ICollection col)
		{
			c = col;
		}
	}
}