public ClientVerifyMessage(byte[] buf, ref int i) : base(KType)
            {
                int byteCount = Bit.ReadInt32(buf, ref i);

                verificationCode = new byte[byteCount];
                for (int j = 0; j < byteCount; ++j)
                {
                    verificationCode[j] = Bit.ReadUInt8(buf, ref i);
                }
            }
 public int ReadInt32()
 {
     return(Bit.ReadInt32(bytes, ref i));
 }