AmericasCup.Data.CourseWind.Read C# (CSharp) Метод

Read() публичный статический Метод

public static Read ( byte buf, int c, CourseWind w ) : int
buf byte
c int
w CourseWind
Результат int
        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;
        }

Same methods

CourseWind::Read ( byte buf ) : CourseWind
CourseWind