Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ ElementsSortedByDerivation

ElementAccessor [] System.Xml.Serialization.AccessorMapping.ElementsSortedByDerivation
getpackageinherited

Definition at line 112 of file AccessorMapping.cs.

113 {
114 get
115 {
116 if (_sortedElements != null)
117 {
118 return _sortedElements;
119 }
120 if (_elements == null)
121 {
122 return null;
123 }
124 _sortedElements = new ElementAccessor[_elements.Length];
127 return _sortedElements;
128 }
129 }
static void SortMostToLeastDerived(ElementAccessor[] elements)