Implements System.Collections.IList.
Definition at line 2235 of file ArrayList.cs.
2236 {
2237 get
2238 {
2239 if (index < 0 || index >=
_size)
2240 {
2241 throw new ArgumentOutOfRangeException("index", SR.ArgumentOutOfRange_Index);
2242 }
2244 }
2245 set
2246 {
2247 if (index < 0 || index >=
_size)
2248 {
2249 throw new ArgumentOutOfRangeException("index", SR.ArgumentOutOfRange_Index);
2250 }
2253 }
2254 }