Encog.Neural.Data.Buffer.EncogEGBFile.SetLocation C# (CSharp) Method

SetLocation() public method

Set the current location to the specified row.
public SetLocation ( int row ) : void
row int The row.
return void
        public void SetLocation(int row)
        {
            try
            {
                this.stream.Position = CalculateIndex(row);
            }
            catch (IOException ex)
            {
                throw new BufferedDataError(ex);
            }
        }