예제 #1
0
파일: Bind.cs 프로젝트: singlag888/NewWeb
 public Bind(Head _header, byte[] _body)
 {
     header        = _header;
     body          = new Bodys(_body);
     header.Length = (ushort)(Head.HeaderLength + body.Length);
 }
예제 #2
0
파일: Bind.cs 프로젝트: singlag888/NewWeb
 public Bind(CenterCmd Command, byte[] _body)
 {
     header        = new Head(Command);
     body          = new Bodys(_body);
     header.Length = (ushort)(Head.HeaderLength + body.Length);
 }