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); 865if (count < 0 || startIndex > Count - count) throw new ArgumentOutOfRangeException(nameof(count), SR.ArgumentOutOfRange_Count); 933if (count < 0 || count > startIndex + 1) throw new ArgumentOutOfRangeException(nameof(count), SR.ArgumentOutOfRange_Count); 2378throw new ArgumentOutOfRangeException(nameof(count), SR.ArgumentOutOfRange_Count);
src\libraries\System.Private.CoreLib\src\System\ThrowHelper.cs (1)
1100return SR.ArgumentOutOfRange_Count;