public void addToStreamEx(Bundle stream, PROPS_INFOS_LIST v)
 {
     stream.writeUint32((UInt32)v.Count);
     for (int i = 0; i < v.Count; ++i)
     {
         itemType.addToStreamEx(stream, v[i]);
     }
     ;
 }
        public PROPS_INFOS_LIST createFromStreamEx(MemoryStream stream)
        {
            UInt32           size  = stream.readUint32();
            PROPS_INFOS_LIST datas = new PROPS_INFOS_LIST();

            while (size > 0)
            {
                --size;
                datas.Add(itemType.createFromStreamEx(stream));
            }
            ;

            return(datas);
        }