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

◆ CreateRange< T >()

static ImmutableStack< T > System.Collections.Immutable.ImmutableStack< T >.CreateRange< T > ( IEnumerable< T > items)
inlinestatic

Definition at line 20 of file ImmutableStack.cs.

21 {
22 Requires.NotNull(items, "items");
24 foreach (T item in items)
25 {
27 }
28 return immutableStack;
29 }

References System.item.