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

◆ InternalRemoveNode()

void System.Collections.Generic.LinkedList< T >.InternalRemoveNode ( LinkedListNode< T > node)
inlinepackage

Definition at line 294 of file LinkedList.cs.

295 {
296 LinkedListNode next = node.next;
297 LinkedListNode prev = node.prev;
298 next.prev = prev;
299 node.prev.next = next;
300 LinkedListNode linkedListNode = this.head;
301 LinkedListNode next2 = node.next;
303 }
class f__AnonymousType0<< Count > j__TPar

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