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

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

            return(datas);
        }