WriteData Method (Int32, Byte, Byte[])

WiimoteLib

Write a byte array to a specified address

Namespace:  WiimoteLib
Assembly:  WiimoteLib (in WiimoteLib.dll)
Version: 1.2.1.0 (1.2.1.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