Parameters
- buffer
- An array of bytes.
- offset
- The zero-based byte offset in the buffer.
- count
- The amount of bytes to be written to the current stream.
byte[] myByteArray = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10}; MySqlBlob myBlob = new MySqlBlob(); myBlob.Write(myByteArray,0,10);
Dim myByteArray() As Byte = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10} Dim myBlob As MySqlBlob = New MySqlBlob myBlob.Write(myByteArray, 0, 10)
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2