public Bind(CenterCmd Command, byte[] _body) { header = new Head(Command); body = new Bodys(_body); header.Length = (ushort)(Head.HeaderLength + body.Length); }
public Head(CenterCmd CommandID) { Converter.Int16ToBytes((ushort)CommandID).CopyTo(initValue, 2); }