11 references to MaxArrayLength
mscorlib (11)
system\collections\arraylist.cs (2)
350if ((uint)newCapacity > Array.MaxArrayLength) newCapacity = Array.MaxArrayLength;
system\Collections\Concurrent\ConcurrentDictionary.cs (2)
1840if (newLength > Array.MaxArrayLength) 1853newLength = Array.MaxArrayLength;
system\collections\generic\list.cs (2)
410if ((uint)newCapacity > Array.MaxArrayLength) newCapacity = Array.MaxArrayLength;
system\collections\sortedlist.cs (2)
364if ((uint)newCapacity > Array.MaxArrayLength) newCapacity = Array.MaxArrayLength;
system\threading\ThreadLocal.cs (3)
589if ((uint)minSize > Array.MaxArrayLength) 624if ((uint)newSize > Array.MaxArrayLength) 626newSize = Array.MaxArrayLength;