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

◆ Create< T >() [4/8]

static ImmutableArray< T > System.Collections.Immutable.ImmutableArray< T >.Create< T > ( T item)
inlinestatic

Definition at line 19 of file ImmutableArray.cs.

20 {
21 T[] items = new T[1] { item };
22 return new ImmutableArray<T>(items);
23 }

References System.item.