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

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

public static Read ( byte buf ) : YachtActionCode
buf byte
Результат YachtActionCode
        public static YachtActionCode Read(byte[] buf)
        {
            var ya = new YachtActionCode();
            Read(buf, 0, ya);
            return ya;
        }

Same methods

YachtActionCode::Read ( byte buf, int c, YachtActionCode ya ) : int
YachtActionCode