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