terraria-cpp2il-methodrecon v1.4.4.9
Terraria mobile dump, with reconstructed method body. Dump with CallAnalysis: https://infinitynichto.github.io/terraria-cpp2il
Loading...
Searching...
No Matches

◆ CopyTo() [3/3]

virtual void System.Collections.ArrayList.CopyTo ( int index,
Array array,
int arrayIndex,
int count )
inlinevirtual

Reimplemented in System.Collections.ArrayList.IListWrapper, and System.Collections.ArrayList.ReadOnlyArrayList.

Definition at line 273 of file ArrayList.cs.

274 {
275 int size = this._size;
276 if (array != null)
277 {
278 int rank = array.Rank;
279 }
280 Array.Copy(this._items, index, array, arrayIndex, count);
281 }
static void Copy(Array sourceArray, Array destinationArray, long length)
Definition Array.cs:205

References System.Collections.ArrayList._items, System.Collections.ArrayList._size, System.array, System.arrayIndex, System.Array.Copy(), and System.count.