コード例 #1
0
 public static int Read(byte[] buf, int c, CourseWind w)
 {
     w.MessageVersionNumber = buf[c++];
     w.SelectedWindId = buf[c++];
     w.RecordCount = buf[c++];
     for (int i = 0; i < w.RecordCount; ++i)
     {
         var wr = new WindRecord();
         c = WindRecord.Read(buf, c, wr);
         w.WindRecords.Add(wr);
     }
     return c;
 }
コード例 #2
0
 public static CourseWind Read(byte[] buf)
 {
     var w = new CourseWind();
     Read(buf, 0, w);
     return w;
 }