Overview | Methods | This Package | All Packages
Reads the specified number of integers from this stream into an integer array.
Syntax
public int[] readInts( int count )
public void readInts( int[] buffer, int index, int count )
Parameters
buffer
The array to read data into.
index
The starting index in the array.
count
The number of integers to read.
Return Value
Returns an integer array containing the data that was read.
Remarks
This method implements the IDataStream.readInts method. This method validates the arguments and then calls the readCore method to read the data.