Write a byte array to a specified address

Namespace:  Bespoke.Common.Wiimote
Assembly:  Bespoke.Common (in Bespoke.Common.dll) Version: 4.3.0.0 (4.3.0.0)

Syntax

C#
public void WriteData(
	int address,
	byte size,
	byte[] buff
)
Visual Basic (Declaration)
Public Sub WriteData ( _
	address As Integer, _
	size As Byte, _
	buff As Byte() _
)
Visual C++
public:
void WriteData(
	int address, 
	unsigned char size, 
	array<unsigned char>^ buff
)

Parameters

address
Type: System..::.Int32
Address to write
size
Type: System..::.Byte
Length of buffer
buff
Type: array< System..::.Byte >[]()[]
Data buffer

See Also