Writes a sequence of bytes to the current
MySqlBlob stream, and advances the current position within this stream by the number of bytes written.
In the example a byte array is filled and written to a newly created
MySqlBlob instance.
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)