Writes a sequence of bytes to the current
PgSqlBlob 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
PgSqlBlob instance.
byte[] myByteArray = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
PgSqlBlob myBlob = new PgSqlBlob();
myBlob.Write(myByteArray,0,10);
Dim myByteArray() As Byte = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
Dim myBlob As PgSqlBlob = New PgSqlBlob
myBlob.Write(myByteArray, 0, 10)