2.2.5.2.6.3 List

The List container specifies an ordered collection of elements.

XML Element: <LST> (an alternative element can be also used: <IE>).

XML Contents: Results of serializing all elements of the collection (starting with the first element).

Example:

 <!-- serialization of a collection created with the following pseudo code:
   a = new array();  a.add(1);  a.add(2);  a.add(3);  -->
 <Obj RefId="RefId-0">
   <TN RefId="RefId-0">
     <T>System.Object[]</T>
     <T>System.Array</T>
     <T>System.Object</T>
   </TN>
   <LST>
     <I32>1</I32>
     <I32>2</I32>
     <I32>3</I32>
   </LST>
 </Obj>