Reads the specified number of characters from this stream.
public char[] readChars( int count )
public void readChars( char[] buffer, int index, int count )
buffer
The array to read data into.
index
The starting index in the array.
count
The number of characters to read.
Returns an array of characters containing the data that was read.
This method implements the IDataStream.readChars method. This method validates the arguments and then calls the readCore method to read the data.