Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Synchronized()

static Stack System.Collections.Stack.Synchronized ( Stack stack)
inlinestaticinherited

Definition at line 369 of file Stack.cs.

370 {
371 if (stack == null)
372 {
373 throw new ArgumentNullException("stack");
374 }
375 return new SyncStack(stack);
376 }