Exemple #1
0
 public void Read(ReadBufferHelper bh)
 {
     nRetCode    = bh.ReadUint16();
     dwAccountID = bh.ReadUint32();
     nCount      = bh.ReadUint8();
     for (int i = 0; i < nCount; i++)
     {
         CharPickInfo[i] = new StCharPickInfo();
         CharPickInfo[i].Read(bh);
     }
     return;
 }
Exemple #2
0
 public void Read(ReadBufferHelper bh)
 {
     nRetCode = bh.ReadUint16();
     dwAccountID = bh.ReadUint32();
     nCount = bh.ReadUint8();
     for (int i = 0; i < nCount; i++)
     {
         CharPickInfo[i] = new StCharPickInfo();
         CharPickInfo[i].Read(bh);
     }
     return ;
 }