Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
XPathNodeRef.cs
Go to the documentation of this file.
2
3internal struct XPathNodeRef
4{
5 private readonly XPathNode[] _page;
6
7 private readonly int _idx;
8
9 public XPathNode[] Page => _page;
10
11 public int Index => _idx;
12
13 public XPathNodeRef(XPathNode[] page, int idx)
14 {
15 _page = page;
16 _idx = idx;
17 }
18
19 public override int GetHashCode()
20 {
22 }
23}
static int GetLocation(XPathNode[] pageNode, int idxNode)
XPathNodeRef(XPathNode[] page, int idx)