5 references to ArgumentOutOfRange_Count
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Collections\ArrayList.cs (4)
376if (count < 0 || startIndex > _size - count) throw new ArgumentOutOfRangeException(nameof(count), SR.ArgumentOutOfRange_Count); 866if (count < 0 || startIndex > Count - count) throw new ArgumentOutOfRangeException(nameof(count), SR.ArgumentOutOfRange_Count); 934if (count < 0 || count > startIndex + 1) throw new ArgumentOutOfRangeException(nameof(count), SR.ArgumentOutOfRange_Count); 2379throw new ArgumentOutOfRangeException(nameof(count), SR.ArgumentOutOfRange_Count);
src\libraries\System.Private.CoreLib\src\System\ThrowHelper.cs (1)
1098return SR.ArgumentOutOfRange_Count;