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

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

public static Read ( byte buf, int c, WindRecord w ) : int
buf byte
c int
w WindRecord
Результат int
        public static int Read(byte[] buf, int c, WindRecord w)
        {
            w.WindId = buf[c++];
            w.Time = new DateTime(1970, 1, 1).AddMilliseconds(BitConverter.ToUInt64(
                new byte[] { buf[c++], buf[c++], buf[c++], buf[c++], buf[c++], buf[c++], 0, 0 }, 0));
            w.RaceId = BitConverter.ToUInt32(buf, c);
            c += 4;

            w.WindDirection = BitConverter.ToInt16(buf, c) * 180.0f / 32768.0f;
            c += 2;
            w.WindSpeed = BitConverter.ToUInt16(buf, c) / 1000.0f;
            c += 2;
            w.BestUpwindAngle = BitConverter.ToInt16(buf, c) * 180.0f / 32768.0f;
            c += 2;
            w.BestDownwindAngle = BitConverter.ToInt16(buf, c) * 180.0f / 32768.0f;
            c += 2;

            w.Flags = (WindRecordFlags)buf[c++];

            return c;
        }

Same methods

WindRecord::Read ( byte buf ) : WindRecord
WindRecord