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

◆ LinkedList() [2/3]

Definition at line 129 of file LinkedList.cs.

130 {
131 if (collection == null)
132 {
133 throw new ArgumentNullException("collection");
134 }
135 foreach (T item in collection)
136 {
137 AddLast(item);
138 }
139 }
LinkedListNode< T > AddLast(T value)

References System.Collections.Generic.LinkedList< T >.AddLast(), System.collection, and System.item.