Writes the contents of the specified character array to this stream.
public void writeChars( char[] buffer )
public void writeChars( char[] buffer, int index, int count )
buffer
The array containing the data to write.
index
The starting index in the array.
count
The number of characters to write.
This method implements the IDataStream.writeChars method. This method validates the arguments and then calls the writeCore method to write the data.