SortedListin 的默认容量是System.Collections.Generic多少?有人告诉我它是4,但下面的例子显示0.为什么?
SortedList
System.Collections.Generic
SortedList<int,string> sortedlist = new SortedList<int,string>(); Console.WriteLine(sortedlist.Capacity);
c# asp.net
asp.net ×1
c# ×1