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

◆ ForEach< T >()

static void System.Array.ForEach< T > ( T[] array,
Action< T > action )
inlinestatic

Definition at line 223 of file Array.cs.

224 {
225 while (array != null)
226 {
227 if (action != null)
228 {
229 return;
230 }
231 }
232 }

References System.action, and System.array.