Azavea.Open.DAO.Util.CachingDataReader.GetInt64 C# (CSharp) Method

GetInt64() public method

Gets the 64-bit signed integer value of the specified field.
The index passed was outside the range of 0 through .
public GetInt64 ( int i ) : long
i int The index of the field to find.
return long
        public virtual long GetInt64(int i)
        {
            if ((i < 0) || (i >= _numCols))
            {
                throw new ArgumentOutOfRangeException("i", "Column index must be >= 0 and < " + _numCols + ".");
            }
            return Convert.ToInt64(GetCachedValue(i));
        }