You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: source/nanoFramework.CoreLibrary/System/Collections/ArrayList.cs
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -171,11 +171,11 @@ public virtual Object Clone()
171
171
/// <summary>
172
172
/// Determines whether an element is in the <see cref="ArrayList"/>.
173
173
/// </summary>
174
-
/// <param name="item"></param>
174
+
/// <param name="value"></param>
175
175
/// <returns>The<see cref="Object"/> to locate in the <see cref="ArrayList"/>.The value can be <see langword="null"/>.</returns>
176
-
publicvirtualboolContains(Objectitem)
176
+
publicvirtualboolContains(Objectvalue)
177
177
{
178
-
returnArray.IndexOf(_items,item,0,_size)>=0;
178
+
returnArray.IndexOf(_items,value,0,_size)>=0;
179
179
}
180
180
181
181
/// <summary>
@@ -191,10 +191,10 @@ public virtual void CopyTo(Array array)
191
191
/// Copies the entire <see cref="ArrayList"/> to a compatible one-dimensional Array, starting at the specified index of the target array.
192
192
/// </summary>
193
193
/// <param name="array">The one-dimensional Array that is the destination of the elements copied from <see cref="ArrayList"/>. The Array must have zero-based indexing. </param>
194
-
/// <param name="arrayIndex">The zero-based index in array at which copying begins. </param>
195
-
publicvirtualvoidCopyTo(Arrayarray,intarrayIndex)
194
+
/// <param name="index">The zero-based index in array at which copying begins. </param>
195
+
publicvirtualvoidCopyTo(Arrayarray,intindex)
196
196
{
197
-
Array.Copy(_items,0,array,arrayIndex,_size);
197
+
Array.Copy(_items,0,array,index,_size);
198
198
}
199
199
200
200
/// <summary>
@@ -252,10 +252,10 @@ public virtual int IndexOf(Object value, int startIndex, int count)
252
252
/// <summary>
253
253
/// Removes the first occurrence of a specific object from the <see cref="ArrayList"/>.
254
254
/// </summary>
255
-
/// <param name="obj">The <see cref="Object"/> to remove from the <see cref="ArrayList"/>. The value can be <see langword="null"/>.</param>
256
-
publicvirtualvoidRemove(Objectobj)
255
+
/// <param name="value">The <see cref="Object"/> to remove from the <see cref="ArrayList"/>. The value can be <see langword="null"/>.</param>
0 commit comments