Write data from safe array

byte[] ReadBuffer = System.Text.Encoding.ASCII.GetBytes("Write Data");
try
{
	ftspcControl1.WriteArray(ReadBuffer, (uint)ReadBuffer.GetLength(0));
}
catch (FTSPCException E)
{
	MessageBox.Show("Error " + E.ErrorCode.ToString() + "\r\n" + 
		E.ErrorSource, "Error", MessageBoxButtons.OK,
		MessageBoxIcon.Error);
}