terraria-cpp2il-methodrecon v1.4.4.9
Terraria mobile dump, with reconstructed method body. Dump with CallAnalysis: https://infinitynichto.github.io/terraria-cpp2il
Loading...
Searching...
No Matches

◆ InternalInsertNodeBefore()

void System.Collections.Generic.LinkedList< T >.InternalInsertNodeBefore ( LinkedListNode< T > node,
LinkedListNode< T > newNode )
inlineprivate

Definition at line 272 of file LinkedList.cs.

273 {
274 newNode.next = node;
275 LinkedListNode prev = node.prev;
276 newNode.prev = prev;
279 int num = this.count;
280 this.count = num;
281 }
class f__AnonymousType0<< Count > j__TPar

References System.Collections.Generic.LinkedList< T >.count, j__TPar, and System.Collections.Generic.LinkedListNode< T >.prev.