YAXLib.YAXElementOrder.YAXElementOrder C# (CSharp) Method

YAXElementOrder() public method

Initializes a new instance of the YAXElementOrder class.
The element this applies to will be given priority in being serialized or deserialized depending on the relative value compared to other child elements.
public YAXElementOrder ( int order ) : System
order int The priority of the element in serializing and deserializing.
return System
        public YAXElementOrder(int order)
        {
            Order = order;
        }
YAXElementOrder