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()

virtual void System.Collections.Hashtable.CopyTo ( Array array,
int arrayIndex )
inlinevirtualinherited

Implements System.Collections.ICollection.

Reimplemented in System.Collections.Hashtable.SyncHashtable.

Definition at line 204 of file Hashtable.cs.

205 {
206 if (array != null)
207 {
208 int rank = array.Rank;
209 int length = array.Length;
210 this.CopyEntries(array, arrayIndex);
211 return;
212 }
213 }
void CopyEntries(Array array, int arrayIndex)
Definition Hashtable.cs:197

References System.array, System.arrayIndex, System.Collections.Hashtable.CopyEntries(), and System.length.