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

◆ ElementsSortedByDerivation

ElementAccessor [] System.Xml.Serialization.ArrayMapping.ElementsSortedByDerivation
getpackage

Definition at line 26 of file ArrayMapping.cs.

27 {
28 get
29 {
30 if (_sortedElements != null)
31 {
32 return _sortedElements;
33 }
34 if (_elements == null)
35 {
36 return null;
37 }
38 _sortedElements = new ElementAccessor[_elements.Length];
40 AccessorMapping.SortMostToLeastDerived(_sortedElements);
41 return _sortedElements;
42 }
43 }