I am using XmlSerializer to deserialize an XML string into a Generic List. The deserialization works fine. However, I just want to make sure if the order of the items in the XML string will be maintained in the resulting Generic List. i.e. with respect to siblings in the XML string. i.e.
<Items>
<Item>A</Item>
<Item>B</Item>
</Items>
"A" will always be the first item in the List and "B" always the second. Didn't find any articles or information on the web about the order of the resulting deserialized XML elements?