FSO.SimAntics.Primitives.VMDialogOperand.Read C# (CSharp) Method

Read() public method

public Read ( byte bytes ) : void
bytes byte
return void
        public void Read(byte[] bytes)
        {
            using (var io = IoBuffer.FromBytes(bytes, ByteOrder.LITTLE_ENDIAN)){
                CancelStringID = io.ReadByte();
                IconNameStringID = io.ReadByte();
                MessageStringID = io.ReadByte();
                YesStringID = io.ReadByte();
                NoStringID = io.ReadByte();
                Type = (VMDialogType)io.ReadByte();
                TitleStringID = io.ReadByte();
                Flags = (VMDialogFlags)io.ReadByte();
            }
        }
VMDialogOperand