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}; SQLiteBlob myBlob = new SQLiteBlob(); myBlob.Write(myByteArray,0,10);
Dim myByteArray() As Byte = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10} Dim myBlob As SQLiteBlob = New SQLiteBlob myBlob.Write(myByteArray, 0, 10)