Example #1
0
 public UpdateBoardHead(Board.Message msg)
     : base(0x29)
 {
     if (msg != null)
     {
         Write((ushort)msg.Id); //01 ff orange ff ff white
         WriteAsciiNull(msg.Title);
     }
 }
Example #2
0
 public UpdateBoardDetail(Board.Message msg)
     : base(0x2A)
 {
     Write((short)msg.Content.Length); //01 ff orange ff ff white
     WriteAsciiNull(msg.Content);
 }