AmericasCup.Data.YachtActionCode.Read C# (CSharp) Method

Read() public static method

public static Read ( byte buf ) : YachtActionCode
buf byte
return 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