Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
PreviousNode
XNode
? System.Xml.Linq.XNode.PreviousNode
get
inherited
Definition at line
30
of file
XNode.cs
.
31
{
32
get
33
{
34
if
(
parent
==
null
)
35
{
36
return
null
;
37
}
38
XNode
xNode
= ((
XNode
)
parent
.
content
).next;
39
XNode
result =
null
;
40
while
(
xNode
!=
this
)
41
{
42
result =
xNode
;
43
xNode
=
xNode
.next;
44
}
45
return
result;
46
}
47
}
System.Collections.Generic.Dictionary
Definition
Dictionary.cs:14
System.Xml.Linq.XContainer.content
object content
Definition
XContainer.cs:425
System.Xml.Linq.XNode.XNode
XNode()
Definition
XNode.cs:73
System.Xml.Linq.XObject.parent
XContainer parent
Definition
XObject.cs:7
System.Xml.ValueHandleType.Dictionary
@ Dictionary
System
Xml
Linq
XText
Generated by
1.10.0