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
LinkedListNode.cs
Go to the documentation of this file.
1
using
System
;
2
3
namespace
System.Collections.Generic
4
{
5
// Token: 0x02000432 RID: 1074
6
public
sealed
class
LinkedListNode
<T>
7
{
8
// Token: 0x06001D23 RID: 7459 RVA: 0x0004F108 File Offset: 0x0004D308
9
internal
LinkedListNode
(
LinkedList<T>
list
, T
value
)
10
{
11
this.list
=
list
;
12
this.item
=
value
;
13
}
14
15
// Token: 0x17000689 RID: 1673
16
// (get) Token: 0x06001D24 RID: 7460 RVA: 0x0004F12C File Offset: 0x0004D32C
17
public
LinkedListNode<T>
Next
18
{
19
get
20
{
21
if
(this.
next
!=
null
)
22
{
23
LinkedListNode
head = this.
list
.head;
24
return
this
;
25
}
26
}
27
}
28
29
// Token: 0x1700068A RID: 1674
30
// (get) Token: 0x06001D25 RID: 7461 RVA: 0x0004F150 File Offset: 0x0004D350
31
public
T
Value
32
{
33
get
34
{
35
return
this.
item
;
36
}
37
}
38
39
// Token: 0x06001D26 RID: 7462 RVA: 0x0004F164 File Offset: 0x0004D364
40
internal
void
Invalidate
()
41
{
42
}
43
44
// Token: 0x040013E4 RID: 5092
45
internal
LinkedList<T>
list
;
46
47
// Token: 0x040013E5 RID: 5093
48
internal
LinkedListNode<T>
next
;
49
50
// Token: 0x040013E6 RID: 5094
51
internal
LinkedListNode<T>
prev
;
52
53
// Token: 0x040013E7 RID: 5095
54
internal
T
item
;
55
}
56
}
j__TPar
class f__AnonymousType0<< Count > j__TPar
Definition
--f__AnonymousType0.cs:8
System.Collections.Generic.LinkedListNode.Invalidate
void Invalidate()
Definition
LinkedListNode.cs:40
System.Collections.Generic.LinkedListNode.list
LinkedList< T > list
Definition
LinkedListNode.cs:45
System.Collections.Generic.LinkedListNode.prev
LinkedListNode< T > prev
Definition
LinkedListNode.cs:51
System.Collections.Generic.LinkedListNode.Next
LinkedListNode< T > Next
Definition
LinkedListNode.cs:18
System.Collections.Generic.LinkedListNode.next
LinkedListNode< T > next
Definition
LinkedListNode.cs:48
System.Collections.Generic.LinkedListNode.Value
T Value
Definition
LinkedListNode.cs:32
System.Collections.Generic.LinkedListNode.item
T item
Definition
LinkedListNode.cs:54
System.Collections.Generic.LinkedListNode.LinkedListNode
LinkedListNode(LinkedList< T > list, T value)
Definition
LinkedListNode.cs:9
System.Collections.Generic.LinkedListNode
Definition
LinkedListNode.cs:7
System.Collections.Generic.LinkedList
Definition
LinkedList.cs:13
System.Collections.Generic
Definition
ArrayBuilder.cs:5
System.ExceptionArgument.value
@ value
System
Definition
__ComObject.cs:4
source
System
Collections
Generic
LinkedListNode.cs
Generated by
1.10.0