예제 #1
0
 void Prepare(CMessage msgBuffer)
 {
     // 헤더는 나중에 넣을것이므로 데이터 부터 넣을 수 있도록 위치를 점프시켜놓는다.
     this.position = CoreParam.HEADER_SIZE_LEN;
     Array.Copy(msgBuffer.buffer, 0, this.buffer, position, msgBuffer.GetPosition());
     this.position += msgBuffer.GetPosition();
 }