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

◆ AddRange< T >() [2/2]

static void Newtonsoft.Json.Utilities.CollectionUtils.AddRange< T > ( this IList< T > initial,
IEnumerable< T > collection )
inlinestatic

Definition at line 40 of file CollectionUtils.cs.

41 {
42 if (initial == null)
43 {
44 throw new OutOfMemoryException();
45 }
46 if (collection != null)
47 {
48 return;
49 }
50 }

References System.collection.