Reads the specified number of short integers from this stream into a short array.
public short[] readShorts( int count )
public void readShorts( short[] buffer, int index, int count )
count
The number of short integers to read.
buffer
The starting index in the array.
index
The byte offset into the buffer.
Returns a short integer array containing the data that was read.
This method implements the IDataStream.readShorts method. This method validates the arguments and then calls the readCore method to read the data.