System::Runtime::InteropServices::Marshal::WriteByte method

Marshal::WriteByte(IntPtr, int, uint8_t) method

Writes byte to memory.

static void System::Runtime::InteropServices::Marshal::WriteByte(IntPtr ptr, int offset, uint8_t value)
ParameterTypeDescription
ptrIntPtrMemory buffer.
offsetintOffset to memory buffer.
valueuint8_tto write.

See Also

Marshal::WriteByte(IntPtr, uint8_t) method

Writes byte to memory.

static void System::Runtime::InteropServices::Marshal::WriteByte(IntPtr ptr, uint8_t value)
ParameterTypeDescription
ptrIntPtrMemory buffer.
valueuint8_tto write.

See Also