Terraria v1.4.4.9
Terraria source code documentation
All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Events Macros

◆ TryPopRange() [1/2]

int System.Collections.Concurrent.ConcurrentStack< T >.TryPopRange ( T[] items)
inline

Definition at line 210 of file ConcurrentStack.cs.

211 {
212 if (items == null)
213 {
214 throw new ArgumentNullException("items");
215 }
216 return TryPopRange(items, 0, items.Length);
217 }

References System.Collections.Concurrent.ConcurrentStack< T >.TryPopRange().

Referenced by System.Collections.Concurrent.ConcurrentStack< T >.TryPopRange().