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