Base:
property
Count
System.Collections.ArrayList.Count
7 references to Count
mscorlib (7)
system\collections\arraylist.cs (7)
809
if (value <
Count
) throw new ArgumentOutOfRangeException("value", Environment.GetResourceString("ArgumentOutOfRange_SmallCapacity"));
852
InsertRange(
Count
, c);
860
if (this.
Count
- index < count)
953
if (startIndex < 0 || startIndex > this.
Count
) throw new ArgumentOutOfRangeException("startIndex", Environment.GetResourceString("ArgumentOutOfRange_Index"));
954
if (count < 0 || startIndex > this.
Count
- count) throw new ArgumentOutOfRangeException("count", Environment.GetResourceString("ArgumentOutOfRange_Count"));
979
if (index < 0 || index > this.
Count
) throw new ArgumentOutOfRangeException("index", Environment.GetResourceString("ArgumentOutOfRange_Index"));
1122
Object[] array = new Object[
Count
];