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

◆ Create< T >() [2/3]

static ImmutableStack< T > System.Collections.Immutable.ImmutableStack< T >.Create< T > ( params T[] items)
inlinestatic

Definition at line 31 of file ImmutableStack.cs.

32 {
33 Requires.NotNull(items, "items");
35 foreach (T value in items)
36 {
38 }
39 return immutableStack;
40 }

References System.value.